-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
134 lines (111 loc) · 3.19 KB
/
hugo.toml
File metadata and controls
134 lines (111 loc) · 3.19 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
title = "Claus' Blog"
baseURL = "https://blog.cmmx.de"
timeZone = "Europe/Berlin"
copyright = "Claus Malter"
languageCode = "en-us"
enableEmoji = true
enableRobotsTXT = true
summaryLength = 40
# Publishing behavior for scheduled posts
buildFuture = false # Don't publish posts with future dates (wait for daily cron)
buildDrafts = false # Don't publish posts with draft: true
[markup]
[markup.tableOfContents]
startLevel = 2
endLevel = 2
ordered = false
[markup.highlight]
linenos = true
lineNumbersInTable = false
[module]
[[module.imports]]
path = "github.com/cloonix/smol"
[pagination]
disableAliases = false
pagerSize = 3
path = 'page'
[params]
description = "Tech stack: Coffee, Code, Curiosity"
favicon = "images/favicon.png"
subtitle = "Made with Hugo and ❤️"
dateFormat = "2006-01-02"
mainSections = ['blog' ]
showContactFooter = true
[permalinks]
blog = "/:year/:month/:day/:title/"
[params.author]
name = "Claus Malter" # Your name as shown in the RSS feed metadata
email = "[email protected]"
avatar = "/images/me.jpg"
bio = 'This blog was created out of pure curiosity. My old Wordpress installation was outdated and so was the content. Since I was interested in Jekyll and Hugo, I started to create this blog based on Hugo and Github Pages. <br /><br />I am a technical consultant specialising in IT infrastructure, backup solutions and software development.'
[taxonomies]
category = 'categories'
tag = 'tags'
series = 'series'
## Header
[menu]
[[menu.main]]
identifier = "home"
name = "🏠 Home"
url = "/"
weight = 10
[[menu.main]]
identifier = "blog"
name = "📰 Blog"
url = "/blog/"
weight = 20
[[menu.main]]
identifier = "bookmark"
name = "🔗 Bookmarks"
url = "/bookmarks/"
weight = 25
[[menu.main]]
identifier = "categories"
name = "🗃️ Categories"
url = "/categories/"
weight = 30
[[menu.main]]
identifier = "rss"
name = "📢 RSS"
url = "/index.xml#feed"
weight = 30
# [[menu.main]]
# identifier = "tags"
# name = "🏷 ️Tags"
# url = "/tags/"
# weight = 40
[[menu.main]]
identifier = "aboutme"
name = "🙎🏻♂️ About Me"
url = "/aboutme/"
weight = 50
[[menu.main]]
identifier = "buymeacoffee"
name = "🍺 Buy me a beer"
url = "https://buymeacoffee.com/cloonix"
weight = 60
## Footer
[[menu.footer]]
name = "Github"
url = "https://github.com/cloonix"
weight = 1
[[menu.footer]]
name = "Mastodon"
url = "https://chaos.social/@cloonix/"
weight = 2
[[menu.footer]]
name = "Bluesky"
url = "https://bsky.app/profile/cloonix.bsky.social"
weight = 2.5
[[menu.footer]]
name = "Matrix"
url = "https://matrix.to/#/@cloonix:matrix.org"
weight = 2.7
[[menu.footer]]
name = "Imprint"
url = "/imprint"
weight = 3
[[menu.footer]]
name = "Privacy Policy"
url = "/privacypolicy"
weight = 4