aboutsummaryrefslogtreecommitdiffstats
path: root/config.toml
blob: 7a7c62408a0776818898e17b0e14d37eff66e469 (plain) (blame)
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# We want to serve the same documents at https://marussy.com/
# and at http://marusya3q7ftl4e4iam65wlto67tq5r5lvmib6ij47b5qjq4rtms7vqd.onion/
# Strict CORS headers would prevent loading clearnet content from the onion site,
# but we must make sure never to link to the clearnet site from the onion site.
# Ideally, here we would set a .invalid URL, so absolute URLs always break.
# However, we must set a valid URL here, otherwise <link rel="canonical"> would break.
baseURL = "https://marussy.com/"

languageCode = "en-us"
title = "Kristóf Marussy"
theme = "marussy"

# Again, make sure we never use absolute URLs.
canonifyURLs = false
# Make the site browseable in the local file system (without assuming a particular / directory)
# even if someone mirrors the whole thing with wget.
relativeURLs = true

# Required for ox-hugo codeblock support, see
# https://ox-hugo.scripter.co/doc/source-blocks/
pygmentsCodeFences = true

# Allow customizing highlighting with CSS.
pygmentsUseClasses = true

[permalinks]
posts = "/:year/:month/:day/:title"

[markup.goldmark.renderer]
# Required for ox-hugo support, see
# https://ox-hugo.scripter.co/doc/goldmark/
unsafe = true

[params]

[[params.contacts]]
name = "Email"
address = "kristof@marussy.com"
url = "mailto:kristof@marussy.com"
class = "email"

[[params.contacts]]
name = "GPG"
address = "B00C29F3D5A628AF"
url = "/gpg/"

[[params.contacts]]
name = "Mastodon"
address = "@kristof@marussy.com"
url = "https://pleroma.marussy.com/users/kristof"

[[params.contacts]]
name = "Git"
address = "git.marussy.com"
url = "https://git.marussy.com"

[[params.contacts]]
name = "ORCID"
address = "0000-0002-9135-8256"
url = "https://orcid.org/0000-0002-9135-8256"

[menu]

[[menu.main]]
identifier = "about"
name = "About"
url = "/"
weight = -100

[[menu.main]]
parent = "about"
identifier = "short-bio"
name = "Short bio"
url = "/#short-bio"
weight = -99

[[menu.main]]
parent = "about"
identifier = "contacts"
name = "Contacts"
url = "/#contacts"
weight = -98

[[menu.main]]
parent = "about"
identifier = "encryption"
name = "Encryption"
url = "/gpg"
weight = -97

[[menu.main]]
parent = "about"
identifier = "canary"
name = "Canary"
url = "/canary"
weight = -96

[[menu.main]]
parent = "about"
identifier = "license"
name = "License"
url = "/license"
weight = -95

[[menu.main]]
identifier = "posts"
name = "Blog"
url = "/posts"
weight = -90

[[menu.main]]
identifier = "publications"
name = "Research"
url = "/publications/"
weight = -80

[[menu.main]]
identifier = "software"
name = "Software"
url = "/software/"
weight = -70

[[menu.main]]
parent = "software"
indentifier = "software-projects"
name = "Projects"
url = "/software/#projects"
weight = -69

[[menu.main]]
parent = "software"
indentifier = "public-repos"
name = "Public repos"
url = "/software/#repos"
weight = -68

[[menu.main]]
parent = "software"
indentifier = "mirrors"
name = "Mirrors"
url = "/software/#mirrors"
weight = -67

[[menu.main]]
parent = "software"
indentifier = "cgit"
name = "Git"
url = "https://git.marussy.com"
weight = -66

[[menu.main]]
parent = "software"
indentifier = "jenkins"
name = "Jenkins"
url = "https://jenkins.marussy.com"
weight = -65