-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.toml
131 lines (106 loc) · 3.47 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# The base URL of the site; the only required configuration variable.
base_url = "https://st1020.github.io/kita"
# The site title and description; used in feeds by default.
title = "Kita"
description = "Kita is a clean, elegant and simple blog theme for Zola."
# The default site author.
author = "st1020"
# The default language; used in feeds.
default_language = "en"
# When set to "true", a feed is automatically generated.
generate_feeds = true
# The filenames to use for the feeds. Used as the template filenames, 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 = ["atom.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 }]
# Configuration of the Markdown rendering
[markdown]
# When set to "true", all code blocks are highlighted.
highlight_code = true
# A list of directories used to search for additional `.sublime-syntax` and `.tmTheme` files.
extra_syntaxes_and_themes = []
# The theme to use for code highlighting.
# See below for list of allowed values.
highlight_theme = "base16-ocean-dark"
# The Kita theme style config.
[extra]
# Enable KaTex math formula support globally.
math = false
# Enable mermaid support globally.
mermaid = false
# Enable comment support globally.
comment = false
# The URL of social image.
social_image = "icons/github.svg"
[extra.style]
# The custom background color.
# bg_color = ""
# The custom background color in dark mode.
# bg_dark_color = ""
# Enable header blur.
# header_blur = true
# The custom header color, only available when `header_blur` is false.
# header_color = ""
# The custom header color in dark mode, only available when `header_blur` is false.
# header_dark_color = ""
# The profile on home page.
[extra.profile]
name = "Kita - Zola Theme"
bio = "Kita is a clean, elegant and simple blog theme for Zola."
# The URL of avatar.
avatar_url = "icons/github.svg"
# Invert color in dark mode.
avatar_invert = true
# The social icons below the profile on the home page.
# The `name` should be the file name of static/icons/*.svg or the icon name of https://simpleicons.org/
[[extra.profile.social]]
name = "github"
url = "https://github.com/st1020/kita"
[[extra.profile.social]]
name = "twitter"
url = "https://github.com/st1020/kita"
[[extra.profile.social]]
name = "rss"
url = "$BASE_URL/atom.xml"
# The top menu.
[[extra.menu]]
name = "Projects"
url = "$BASE_URL/projects"
[[extra.menu]]
name = "Archive"
url = "$BASE_URL/archive"
[[extra.menu]]
name = "Tags"
url = "$BASE_URL/tags"
[[extra.menu]]
name = "About"
url = "$BASE_URL/about"
# The page footer options.
[extra.footer]
since = 2020
license = "CC BY-SA 4.0"
license_url = "https://creativecommons.org/licenses/by-sa/4.0/deed"
# The giscus comment options, only available when comment is enabled.
[extra.giscus]
repo = ""
repo_id = ""
category = ""
category_id = ""
mapping = "pathname"
strict = 1
reactions_enabled = 0
emit_metadata = 0
input_position = "top"
theme = "light"
lang = "en"
loading = "lazy"