-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
153 lines (126 loc) · 3.05 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
baseURL = "https://sumnerevans.com"
languageCode = "en-us"
title = "Sumner Evans"
theme = "smol"
summaryLength = 60
pygmentsCodefences = true
pygmentsStyle = "github"
pygmentsUseClasses = true
timeout = "360s"
[outputs]
home = ["HTML", "RSS", "JSON"]
# paginate = 15
[minify]
minifyOutput = true
[markup]
[markup.highlight]
style = "github"
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.extensions]
[markup.goldmark.extensions.passthrough]
enable = true
[markup.goldmark.extensions.passthrough.delimiters]
block = [['\[', '\]'], ['$$', '$$']]
inline = [['\(', '\)']]
[imaging]
quality = 90
[security]
enableInlineShortcodes = false
[security.exec]
allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$', '^rst2html$']
osEnv = ['(?i)^(PATH|PATHEXT|APPDATA|TMP|TEMP|TERM)$']
[security.funcs]
getenv = ['^HUGO_']
[security.http]
methods = ['(?i)GET|POST']
urls = ['.*']
[params]
author = "Sumner Evans"
description = "I'm a Software Engineer at Automattic working on Beeper. This is my personal website, portfolio, and blog."
title = "Sumner Evans"
subtitle = "Software Engineer at Automattic working on Beeper"
dateFmt = "2006-01-02"
logo = "profile.jpg"
# Theme
themeColorAutoDetectBrowserPreference = true
themeColor = 'dark'
# Posts shown in homepage
mainSections = ["posts"]
# Isso
issoUrl = "//comments.sumnerevans.com"
[params.issoOptions]
avatar = false
gravatar = true
reply-notifications = true
reply-to-self = true
[params.goatcounter]
domain = "https://sws.goatcounter.com/count"
[menu]
[[menu.main]]
identifier = "about"
name = "About"
url = "/about/"
weight = 1
[[menu.main]]
identifier = "portfolio"
name = "Portfolio"
url = "/portfolio/"
weight = 5
[[menu.main]]
identifier = "posts"
name = "Posts"
url = "/posts/"
weight = 6
[[menu.main]]
identifier = "categories"
name = "Categories"
url = "/categories/"
weight = 7
[[menu.main]]
identifier = "tags"
name = "Tags"
url = "/tags/"
weight = 8
[[menu.main]]
identifier = "rss"
name = "RSS"
url = "/index.xml"
weight = 9
# Footer
[[menu.footer]]
name = "GitHub"
url = "https://github.com/sumnerevans"
weight = 1
[[menu.footer]]
name = "LinkedIn"
url = "https://www.linkedin.com/in/sumnerevans"
weight = 2
[[menu.footer]]
name = "YouTube"
url = "https://www.youtube.com/channel/UCyrdRO4oJRpszr0ovN1FwBA"
weight = 5
[[menu.footer]]
name = "StackOverflow"
url = "https://stackoverflow.com/users/2319844/sumner-evans"
weight = 6
[related]
includeNewer = true
toLower = true
[[related.indices]]
name = 'keywords'
type = 'basic'
weight = 100
[[related.indices]]
name = 'tags'
type = 'basic'
weight = 60
[[related.indices]]
name = 'categories'
type = 'basic'
weight = 30
[[related.indices]]
name = 'date'
type = 'basic'
weight = 10