-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
33 lines (30 loc) · 1012 Bytes
/
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
# The URL the site will be built for
base_url = "https://dlzht.github.io"
theme = "terminimal"
compile_sass = true
build_search_index = false
taxonomies = [
{ name = "tags"},
]
[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
highlight_theme = "monokai"
external_links_target_blank = true
[extra]
# Put all your custom variables here
accent_color = "blue-light"
background_color = "light"
show_only_description = false
logo_text = "QianQi [email protected]"
copyright_html = "Email: <a href=mailto:[email protected]>[email protected]</a>"
enable_post_view_navigation = true
post_view_navigation_prompt = "++"
menu_items = [
{name = "主页", url = "$BASE_URL"},
{name = "标签", url = "$BASE_URL/tags"},
{name = "关于", url = "$BASE_URL/about"},
{name = "归档", url = "$BASE_URL/archive"},
# {name = "Github", url = "https://github.com/dlzht", newtab = true},
]