-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
65 lines (54 loc) · 1.2 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
baseURL = 'https://blog.withsam.org'
languageCode = 'en-us'
title = "Sam's blog"
theme = 'blist'
[languages]
[languages.en]
contentDir = "content"
weight = 1
languageName = "English"
[languages.en.params]
introTitle = "Hey! I'm Sam"
introSubtitle = "24 y/o developer who enjoys cyber security, blogging and strategy games"
introPhoto = "/picture.jpg"
logo = "/logo.png"
reading_speed = 114
[[languages.en.menu.main]]
name = "Posts"
url = "blog"
weight = 1
[[languages.en.menu.main]]
name = "About"
url = "about/"
weight = 2
[[languages.en.menu.main]]
name = "Tags"
url = "tags"
weight = 3
[params]
darkModeToggle = true
enableSearch = true
searchKeys = [
"tags",
"date",
"categories",
"summary",
"content",
"link",
"author"
]
[params.homepage.social]
title = "Links"
[[params.homepage.social.icons]]
website = "github"
url = "https://github.com/udf"
[[menu.main]]
name = "About"
url = "/about"
[outputs]
home = ["HTML", "RSS", "JSON"]
[markup]
[markup.highlight]
style = "monokai"
[markup.goldmark.renderer]
unsafe = true