summaryrefslogtreecommitdiff
path: root/config.toml
blob: 91c30a1a4f297930d83fbd5ab905c4de14778ad6 (plain)
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
157
158
159
160
161
162
# our homepage url
baseURL = "https://cullmann.io/"

# cullmann.io website
title = "cullmann.io"

# theme
theme = "hugo-coder"

# content == english, Impressum is german
languagecode = "en"
defaultcontentlanguage = "en"

# pagination
paginate = 20

# allow git
enableGitInfo = true

# nice urls
canonifyurls = true

# pygment settings
pygmentsstyle = "b2"
pygmentscodefences = true
pygmentscodefencesguesssyntax = true

[outputs]
    # JSON for search
    home = ["HTML", "RSS", "JSON"]

[params]
    # me
    author = "Christoph Cullmann"

    # what's this?
    description = "Christoph Cullmann's personal website"

    # some keywords
    keywords = "blog,developer,personal"

    # my profession
    info = "Software Engineer"

    # my cartoon variant ;=)
    avatarurl = "images/christoph_avatar.jpg"

    # ;=) how true
    footercontent = "Ignorance is bliss..."

    # nice footer
    hideCredits = true
    hideCopyright = false
    commit = "https://github.com/christoph-cullmann/cullmann.io/tree/"

    # no right to left
    rtl = false

    # Use inverted colors
    inverted = true

    # Series see also post count
    maxSeeAlsoItems = 5

    # Custom CSS
    custom_css = []

#
# links to my public profiles
#

[[params.social]]
    name = "E-Mail"
    icon = "fa fa-envelope"
    weight = 1
    url = "mailto:christoph@cullmann.io"

[[params.social]]
    name = "GitHub"
    icon = "fab fa-github"
    weight = 2
    url = "https://github.com/christoph-cullmann/"

[[params.social]]
    name = "GitLab"
    icon = "fab fa-gitlab"
    weight = 3
    url = "https://gitlab.com/cullmann"

[[params.social]]
    name = "Twitter"
    icon = "fab fa-twitter"
    weight = 4
    url = "https://twitter.com/ChrCullmann/"

[[params.social]]
    name = "YouTube"
    icon = "fab fa-youtube"
    weight = 5
    url = "https://www.youtube.com/c/ChristophCullmann/"

[[params.social]]
    name = "amazon.de"
    icon = "fab fa-amazon"
    weight = 6
    url = "https://www.amazon.de/gp/profile/amzn1.account.AGWKWWFPCHLCW6E33CEFF7XKIHAQ"

#
# main menu
#

[menu]

  [[menu.main]]
    name = "About"
    url = "about/"
    weight = 10

  [[menu.main]]
    name = "Posts"
    url = "posts/"
    weight = 20

  [[menu.main]]
    name = "Projects"
    url = "projects/"
    weight = 30

  [[menu.main]]
    name = "Academic"
    url = "academic/"
    weight = 40

  [[menu.main]]
    name = "Links"
    url = "links/"
    weight = 50

  [[menu.main]]
    name = "Search"
    url = "search/"
    weight = 60

  [[menu.main]]
    name = "Impressum"
    url = "impressum/"
    weight = 70

# maximal privacy
[privacy]
  [privacy.disqus]
    disable = true
  [privacy.googleAnalytics]
    disable = true
  [privacy.instagram]
    disable = true
  [privacy.twitter]
    disable = true
  [privacy.vimeo]
    disable = true
  [privacy.youtube]
    disable = true