summaryrefslogtreecommitdiff
path: root/config.toml
blob: c7a2493ffe00d1c1113f8f1489296b0b3c416763 (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
# our homepage url
baseURL = "https://cullmann.io/"

# default content is in english
languageCode = "en-us"
defaultContentLanguage = "en"

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

# use hermit theme
theme = "hermit"

# some settings
enableGitInfo = true
pygmentsCodefences = true
pygmentsUseClasses = true
enableEmoji = true

[author]
  name = "Christoph Cullmann"

[params]
  # different date formats to use
  dateform        = "Jan 2, 2006"
  dateformShort   = "Jan 2"
  dateformNum     = "2006-01-02"
  dateformNumTime = "2006-01-02 15:04 -0700"

  # our color
  themeColor = "#494f5c"

  # this is my homepage
  homeSubtitle = "Personal homepage of Christoph Cullmann"

  # Toggling this option needs to rebuild SCSS, requires Hugo extended version
  justifyContent = false  # Set "text-align: justify" to `.content`.

  [[params.social]]
    name = "github"
    url = "https://github.com/christoph-cullmann/"

  [[params.social]]
    name = "twitter"
    url = "https://twitter.com/ChrCullmann/"

  [[params.social]]
    name = "youtube"
    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