aboutsummaryrefslogtreecommitdiffstats
path: root/config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml74
1 files changed, 58 insertions, 16 deletions
diff --git a/config.toml b/config.toml
index 3a27c75..d603064 100644
--- a/config.toml
+++ b/config.toml
@@ -24,24 +24,66 @@ pygmentsCodeFences = true
24pygmentsUseClasses = true 24pygmentsUseClasses = true
25 25
26[permalinks] 26[permalinks]
27 posts = "/:year/:month/:day/:title" 27posts = "/:year/:month/:day/:title"
28 28
29[markup.goldmark.renderer] 29[markup.goldmark.renderer]
30 # Required for ox-hugo support, see 30# Required for ox-hugo support, see
31 # https://ox-hugo.scripter.co/doc/goldmark/ 31# https://ox-hugo.scripter.co/doc/goldmark/
32 unsafe = true 32unsafe = true
33
34[params]
35familyNameFirst = false
36givenName = "Kristóf"
37familyName = "Marussy"
38
39[[params.contacts]]
40name = "Email"
41address = "kristof@marussy.com"
42url = "mailto:kristof@marussy.com"
43class = "email"
44
45[[params.contacts]]
46name = "GPG"
47address = "B00C29F3D5A628AF"
48url = "/gpg/"
49
50[[params.contacts]]
51name = "Mastodon"
52address = "@kristof@marussy.com"
53url = "https://pleroma.marussy.com/users/kristof"
54
55[[params.contacts]]
56name = "Git"
57address = "git.marussy.com"
58url = "https://git.marussy.com"
59
60[[params.contacts]]
61name = "ORCID"
62address = "0000-0002-9135-8256"
63url = "https://orcid.org/0000-0002-9135-8256"
33 64
34[menu] 65[menu]
35 [[menu.main]]
36 identifier = "about"
37 name = "About"
38 url = "/"
39 # [[menu.main]]
40 # identifier = "blog"
41 # name = "Blog"
42 # url = "/posts"
43 [[menu.main]]
44 identifier = "publications"
45 name = "Publications"
46 url = "/publications"
47 66
67[[menu.main]]
68identifier = "about"
69name = "About"
70url = "/"
71weight = -100
72
73[[menu.main]]
74identifier = "posts"
75name = "Blog"
76url = "/posts"
77weight = -90
78
79[[menu.main]]
80identifier = "publications"
81name = "Research"
82url = "/publications/"
83weight = -80
84
85[[menu.main]]
86identifier = "software"
87name = "Code"
88url = "/software/"
89weight = -70