summaryrefslogtreecommitdiff
path: root/config.toml
blob: dd4fc3ae09b0ec6587d3437ce85d3598bd15923f (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
# 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

[params]
    author = "Christoph Cullmann"

    description = "Christoph Cullmann's personal website"

    keywords = "blog,developer,personal"

    info = "Software Engineer"
    avatarurl = "images/avatar.jpg"


    #footercontent = "Enter a text here."

    dateformat = "January 2, 2006"

    hideCredits = true
    hideCopyright = false

    # Git Commit in Footer, uncomment the line below to enable it.
    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 = []

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

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

[[params.social]]
    name = "YouTube"
    icon = "fab fa-youtube"
    weight = 3
    url = "https://www.youtube.com/channel/UChxsQT-6tVSbEmfiPqMM1Jg"

[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 = "Impressum"
    url = "impressum/"
    weight = 50