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

title = "memzero"
description = "Hello .*"

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

compile_sass = true
build_search_index = false

ignored_content = [
    "*.drawio", "*.drawio.dtmp", "*.drawio.bkp", "*.elf",
]

[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]
header_links = [
    { url = "$BASE_URL", name = "/posts" },
    { url = "$BASE_URL/tags", name = "/tags" },
    { url = "https://github.com/johannst", name = "/github" },
    { url = "https://git.memzero.de", name = "/cgit" },
    #{ url = "https://twitter.com/xjohannst", name = "/twitter" },
    { url = "https://memzero.de", name = "/usr" },
]

[link_checker]
external_level = "error"

# vim:ft=config