-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
57 lines (52 loc) · 1.41 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
baseurl = "https://i-rant.arnaudbos.com/"
languageCode = "en-US"
title = "Arnaud Bos"
# Enable comments by entering your Disqus shortname
disqusShortname = "i-rant"
# Enable Google Analytics by entering your tracking code
# googleAnalytics = ""
theme = "hugo-sustain"
[permalinks]
post = "/:year/:month/:day/:slug"
[params]
author = "Arnaud Bos"
description = "My corner of teh interweb."
# Custom assets can be linked with their paths relative to static/
custom_css = []
custom_js = []
## Main Menu
[[menu.main]]
name = "blog"
weight = 100
identifier = "blog"
url = "https://i-rant.arnaudbos.com/"
[[menu.main]]
name = "projects"
identifier = "projects"
weight = 200
url = "https://side-effects.arnaudbos.com/"
[[menu.main]]
name = "talks"
identifier = "talks"
weight = 300
url = "https://talks.arnaudbos.com/"
[[menu.main]]
name = "level-up"
identifier = "level-up"
weight = 400
url = "https://level-up.arnaudbos.com/"
[[menu.main]]
name = "resume"
identifier = "resume"
weight = 500
url = "https://vitae.arnaudbos.com/"
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true # Enable user to embed HTML snippets in Markdown content.
[markup.highlight]
codeFences = false # Disable Hugo's code highlighter as it conflicts with Academic's highligher.
[markup.tableOfContents]
startLevel = 2
endLevel = 3