-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
115 lines (87 loc) · 3.12 KB
/
config.toml
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
# The URL the site will be built for
base_url = "https://d3rjust1n.xyz"
# Whether to automatically compile all Sass files in the sass directory
#compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
#build_search_index = true
# The site title and description; used in feeds by default.
title = "D3rJust1n"
description = "Mein Blog"
default_language= "de"
theme = "kita"
# When set to "true", the generated HTML files are minified.
minify_html = true
# When set to "true", a feed is automatically generated.
generate_feeds = true
# The filename to use for the feed. Used as the template filename, too.
# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed.
# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
feed_filenames = ["rss.xml"]
# The taxonomies to be rendered for the site and their configuration of the default languages
# Example:
# taxonomies = [
# {name = "tags", feed = true}, # each tag will have its own feed
# {name = "tags"}, # you can have taxonomies with the same name in multiple languages
# {name = "categories", paginate_by = 5}, # 5 items per page for a term
# {name = "authors"}, # Basic definition: no feed or pagination
# ]
#
taxonomies = [{ name = "tags", rss = true, paginate_by = 5 }]
# The default author for pages
author = "D3rJust1n"
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
# Whether external links are to be opened in a new tab
# If this is true, a `rel="noopener"` will always automatically be added for security reasons
external_links_target_blank = true
# The theme to use for code highlighting.
# See below for list of allowed values.
highlight_theme = "visual-studio-dark"
# Whether to set decoding="async" and loading="lazy" for all images
# When turned on, the alt text must be plain text.
# For example, `![xx](...)` is ok but `![*x*x](...)` isn’t ok
# FIXME: this breaks TOC for headings lower down the page, was still working in 0.18 but seems broken in 0.19.2
# lazy_async_image = true
[extra]
# Put all your custom variables here
[extra.profile]
name = "D3rJust1n"
avatar_url = "images/pb.png"
[[extra.profile.social]]
name = "instagram"
url = "https://instagram.com/d3rjust1n"
[[extra.profile.social]]
name = "tiktok"
url = "https://tiktok.com/@d3rjust1nn"
[[extra.profile.social]]
name = "youtube"
url = "https://youtube.com/@d3rjust1n"
[[extra.profile.social]]
name = "discord"
url = "https://d3rjust1n.xyz/discord"
[[extra.profile.social]]
name = "twitch"
url = "https://twitch.tv/d3rjust1nn"
[[extra.profile.social]]
name = "x"
url = "https://x.com/d3rjust1nn"
[[extra.profile.social]]
name = "anilist"
url = "https://anilist.co/user/d3rjust1n"
[[extra.profile.social]]
name = "github"
url = "https://github.com/d3rjust1n"
[[extra.profile.social]]
name = "rss"
url = "$BASE_URL/rss.xml"
[[extra.menu]]
name = "Tags"
url = "$BASE_URL/tags"
[[extra.menu]]
name = "Projekte"
url = "$BASE_URL/projekte"
##[[extra.menu]]
##name = "About"
##url = "$BASE_URL/about"