-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
161 lines (125 loc) · 4.34 KB
/
config.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# Set base URL for site - should end with a trailing slash
baseUrl = "https://jack-champagne.github.io/"
theme = "slick"
# Site title (not shown if commented out or set to false)
# (If you disable this, add some link on the index page inside menu.main,
# otherwise your visitors will get confused and lost...)
title = "Tidbits"
languageCode = "en"
defaultContentLanguage = "en-us"
# Will appear below the footer links with a © sign and the current year
copyright = "Jack Champagne — All rights reserved."
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true # Allow html (needed for some shortcodes)
[markup.highlight]
codeFences = true # Enable highlighting inside codefences
guessSyntax = true # Highlight code without language tag
noClasses = false # Use the theme's style sheet
canonifyURLs = true
preserveTaxonomyNames = true
# Configure pagination
paginate = 10
paginatePath = "page"
[params]
# Site subtitle (not shown if commented out or set to false)
subtitle = "A Journal"
# Site description
description = "A journal for my days and thoughts"
# Favicon file (relative to baseURL - place below static or assets folder)
favicon = "favicon.png"
# Custom css file (relative to baseURL - place below static or assets folder)
css = "custom.css"
# Define formatting of dates
# (optional, falls back to RFC822 format if not set)
# For reference to date and time formatting, see:
# https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference
# Make sure to set showMetaDates to true to see any dates
dateFmt = "Mon, 02 Jan 2006 15:04:05 MST"
# Customize the text of the 404 page here
errorPageText = "There's nothing to see here, please move along!"
# Header with title/subtitle can be disabled here.
# (If you disable this, add some link on the index page inside menu.main,
# otherwise your visitors will get confused and lost...)
showNavHeader = true
# Decide if only summaries are shown on the main page or the full content
showFullContent = true
# If false no pagination is shown when there is nothing to paginate
showEmptyPagination = true
# If false the dates for the posts are not shown
showMetaDates = true
# If false the taxonomy links for the posts are not shown
showMetaLinks = true
# Uses Hugo internal templates if set
opengraph = false
schema = false
twitter_cards = false
# Define all supported taxonomies (add series to the default)
[taxonomies]
tags = "tags"
categories = "categories"
series = "series"
[author]
name = "Jack Champagne"
email = "[email protected]"
[services.rss]
# limit the length of the rss feed (default: unlimited)
limit = 0
[menu]
# Configure main menu entries (header)
# Currently set to list all taxonomies and posts
[[menu.main]]
identifier = "post"
name = "Posts"
title = "All posts"
url = "/posts/"
weight = 1
[[menu.main]]
identifier = "categories"
name = "Categories"
title = "All categories"
url = "/categories/"
weight = 2
[[menu.main]]
identifier = "tags"
name = "Tags"
title = "All tags"
url = "/tags/"
weight = 2
[[menu.main]]
identifier = "series"
name = "Series"
title = "All series"
url = "/series/"
weight = 2
# Define the entries for post metadata
# Identifiers should match with the taxonomy entries
[[menu.meta]]
identifier = "categories"
name = "Categories"
weight = 1
[[menu.meta]]
identifier = "series"
name = "Series"
weight = 2
[[menu.meta]]
identifier = "tags"
name = "Tags"
weight = 3
# Add some footer links to your likings
[[menu.footer]]
name = "GitHub"
title = "Theme repository"
url = "https://github.com/jack-champagne/jack-champagne.github.io"
weight = 1
[[menu.footer]]
name = "Slick"
title = "Theme page on gohugo.io"
url = "https://themes.gohugo.io/slick"
weight = 2
[[menu.footer]]
name = "To Top"
title = "Top"
url = "#"
weight = 3