-
Notifications
You must be signed in to change notification settings - Fork 1
/
hugo.toml
86 lines (81 loc) · 1.93 KB
/
hugo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Theme config.
# Copy to base website folder and update variables
baseURL = "" # Set by deploy script
languageCode = "en-us"
title = "CSC XXX - Example Lecture"
theme = "hugo-theme-ncsu"
[params]
# Theme specific setting
showToC = true # ToC on the right
showSidebar = true # Sidebar on the left
showWIP = true # 'Work in progress' message on every page
showFooter = true # Site footer with some lecture info
# Course variables
iteration = "Fall 2024"
year = "2024"
cshort = "CSC XXX"
clong = "Example Lecture"
cfull = "CSC XXX - Example Lecture"
cdesc = "Some longer course description"
time = "Monday, Wednesday 6:00pm -- 7:15pm"
location = "1226 Engineering Building 2 (EB 2)"
# Pull in some data from git
enableGitInfo = true
[frontmatter]
date = ["date", "publishDate", "lastmod"]
lastmod = ["lastmod", ":git", "date", "publishDate"]
# Menu
sectionPagesMenu = "main"
[menu]
[[menu.main]]
identifier = "about"
name = "About"
URL = "/"
weight = 1
[[menu.main]]
identifier = "schedule"
name = "Schedule"
URL = "/schedule/"
weight = 2
# [[menu.main]]
# identifier = "assignments"
# name = "Assignments"
# URL = "/assignments/"
# weight = 3
# [[menu.main]]
# identifier = "readings"
# name = "Readings"
# URL = "/readings/"
# weight = 4
[[menu.main]]
identifier = "syllabus"
name = "Syllabus"
URL = "/syllabus/"
weight = 5
[markup]
defaultMarkdownHandler = "goldmark"
[markup.tableOfContents]
endLevel = 3
ordered = false
startLevel = 1
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = true
lineNumbersInTable = true
style = "autumn"
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.parser]
autoHeadingID = true
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true