-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
80 lines (64 loc) · 1.44 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
baseURL = "https://www.wimdeblauwe.com/"
languageCode = "en-us"
title = "Wim Deblauwe"
theme = "ezhil"
copyright = "© 2022 Wim Deblauwe"
# disqusShortname = ""
googleAnalytics = "G-VJZ8LM94JG"
[params]
# If social media links are enabled then enable this to fetch icons from CDN instead of hosted on your site
featherIconsCDN = true
customCSS = "css/wimdeblauwe.css"
images = ['images/wim-deblauwe.jpg']
favicon = 'favicon.svg'
[[menu.main]]
name = "Blog"
url = "/"
weight = 1
[[menu.main]]
name = "Projects"
url = "/projects"
weight = 2
[[menu.main]]
name = "Books"
url = "/books"
weight = 3
[[menu.main]]
name = "Conferences"
url = "/conferences"
weight = 4
[[menu.main]]
name = "About"
url = "/about"
weight = 5
[[params.social]]
name = "RSS FEED"
icon = "rss"
url = "/blog/index.xml"
[[params.social]]
name = "GitHub"
icon = "github"
url = "https://github.com/wimdeblauwe"
[[params.social]]
name = "Twitter"
icon = "twitter"
url = "https://twitter.com/wimdeblauwe"
# Enable tags.
[taxonomies]
tag = "tags"
[privacy.youtube]
privacyEnhanced = true
[privacy.googleAnalytics]
anonymizeIP = true
respectDoNotTrack = true
useSessionStorage = true
[security]
enableInlineShortcodes = false
[security.exec]
allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$', 'asciidoctor']
osEnv = ['(?i)^(PATH|PATHEXT|APPDATA|TMP|TEMP|TERM|GEM_PATH)$']
[security.funcs]
getenv = ['^HUGO_']
[security.http]
methods = ['(?i)GET|POST']
urls = ['.*']