aboutsummaryrefslogtreecommitdiffhomepage
path: root/config.toml
blob: 343a57c7d40639d9ceac8ed656e9eb8f83a62129 (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
base_url = "https://blog.memzero.de"
#base_url = "https://memzero.de/blog"

title = "memzero"
#description = "Cow says .*"

#theme = "hyde"
theme = "after-dark"

taxonomies = [
    { name = "categories" },
    { name = "tags" },
]

compile_sass = true
build_search_index = true

[markdown]
highlight_code = true
# https://www.getzola.org/documentation/getting-started/configuration/#syntax-highlighting
# -- light
#highlight_theme = "OneHalfLight"
#highlight_theme = "Tomorrow"
# -- dark
highlight_theme = "one-dark"

[extra]
hyde_links = [
    { url = "$BASE_URL/tags", name = "Tags" },
    { url = "https://github.com/johannst", name = "GitHub" },
    { url = "https://twitter.com/xjohannst", name = "Twitter" },
]
#hyde_theme = "theme-base-0d"

author = "Johannes Stoelp"
after_dark_menu = [
    { url = "$BASE_URL", name = "Posts" },
    { url = "$BASE_URL/tags", name = "Tags" },
    { url = "https://github.com/johannst", name = "GitHub" },
    { url = "https://twitter.com/xjohannst", name = "Twitter" },
    { url = "https://memzero.de", name = "About" },
]
after_dark_title = "blog.memzero.de"

[link_checker]
external_level = "error"

# vim:ft=config