-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
112 lines (103 loc) · 2.53 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
baseURL = "https://lukasrotermund.de"
languageCode = "en-us"
defaultContentLanguage = "en"
title = "coding blog"
theme = "lrotermund-cupper-hugo-theme"
enableRobotsTXT = true
enableGitInfo = true
[imaging]
quality = 99
[menu]
[[menu.nav]]
identifier = "blog"
name = "Blog"
url = "/"
weight = 10
[[menu.nav]]
identifier = "about"
name = "About"
url = "/about/"
weight = 20
[[menu.nav]]
identifier = "tags"
name = "Tags"
url = "/tags/"
weight = 30
[[menu.nav]]
identifier = "rss"
name = "RSS"
url = "/index.xml"
weight = 40
[[menu.nav]]
identifier = "impressum"
name = "Impressum"
url = "/impressum/"
weight = 50
[[menu.nav]]
identifier = "data-protection"
name = "Data Protection"
url = "/data-protection/"
weight = 60
[[menu.nav]]
identifier = "graphic-and-image-sources"
name = "Graphic sources"
url = "/graphic-and-image-sources/"
weight = 70
[params]
author = "Lukas Rotermund"
description = "Backend Software Developer at tasko Products GmbH"
homeMetaContent = "hobby coding blog about all dev topics that interest me"
footer = "Made with [Hugo](https://gohugo.io/). Theme based on [Cupper](https://github.com/zwbetz-gh/cupper-hugo-theme). Deployed to [Docker](https://www.docker.com)."
dateFormat = "2006-01-02"
#codePenUser = someUser
katex = false
hideHeaderLinks = false
search = true
showThemeSwitcher = true
moveFooterToHeader = false
logoAlt = "Thats me, Lukas Rotermund"
avatar = "/assets/lukas-rotermund.jpg"
favicon = "/assets/favicon.ico"
[[params.social]]
name = "github"
url = "https://github.com/lrotermund"
rel = "me"
[[params.social]]
name = "Mastodon"
url = "https://social.tchncs.de/@lukasrotermund"
rel = "me"
[params.style]
darkestColor = "#315659"
darkColor = "#253031"
primaryColor = "#dad865"
lightColor = "#96a879"
lightestColor = "#fff"
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.parser]
attribute = true
autoHeadingID = true
[markup.goldmark.renderer]
hardWraps = false
unsafe = true
xHTML = false
[markup.highlight]
codeFences = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "monokai"
tabWidth = 4
[markup.tableOfContents]
endLevel = 6
startLevel = 2