-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
70 lines (53 loc) · 1.13 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
baseURL = "https://davidhallin.com/"
languageCode = "en-us"
title = "davidhallin.com"
paginate = 10
copyright = "© David Hallin"
pygmentsstyle = "vs"
pygmentscodefences = true
pygmentscodefencesguesssyntax = true
googleAnalytics = ""
[params]
subtitle = "a blog by david hallin about programming, and learning new things"
avatar = "/images/dave.jpeg"
featherIconsCDN = true
favicon = "/favicon.ico"
mode = "auto" # "dark" or "auto"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
# Nav.
[menu]
[[menu.main]]
name = "home"
url = "/"
weight = 1
[[menu.main]]
name = "projects"
url = "/projects/"
weight = 2
[[menu.main]]
name = "tags"
url = "/tags/"
weight = 3
[[menu.main]]
name = "about"
url = "/about/"
weight = 4
[[params.social]]
name = "Github"
icon = "github"
url = "https://github.com/hallindavid"
[[params.social]]
name = "Twitter"
icon = "twitter"
url = "https://twitter.com/david_hallin"
[[params.social]]
name = "RSS"
icon = "rss"
url = "/index.xml"
[taxonomies]
tag = "tags"
PygmentsCodeFences = true
PygmentsStyle = "monokai"