-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
52 lines (46 loc) · 1.64 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
# The URL the site will be built for
base_url = "https://CSUwangj.github.io/ZDaily/"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# search is not available by now
build_search_index = false
generate_feeds = true
feed_filenames = ["rss.xml", "atom.xml"]
taxonomies = [
{name = "categories", rss = true},
{name = "tags", rss = true},
{name = "archives", rss = true},
]
[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"
[extra]
# nav menu title
site_name = "DogFood"
menu_items = [
{url = "$BASE_URL", name = "Home", icon = "fa-solid fa-house"},
{url = "$BASE_URL/about", name = "About", icon = "fa-solid fa-user-circle"},
{url = "$BASE_URL/categories", name = "Categories", icon = "fa-solid fa-book"},
{url = "$BASE_URL/tags", name = "Tags", icon = "fa-solid fa-tags"},
{url = "$BASE_URL/archives", name = "Archives", icon = "fa-solid fa-inbox"},
]
# will be used everywhere ;D
author = "CSUwangj"
# will be used in about page and sidebar
quote = "Just keep in mind that hacking is very rarely in a sequence."
links = [
{name = "Author of DogFood", url = "https://CSUwangj.github.io/"},
]
# check font awesome 6 for more favicon
author_links = [
{name = "Github", url = "https://github.com/CSUwangj", favicon = "fa-brands fa-github"},
]
copyright_year = "2018-2022"
# will be in about page and side bar
avatar = "img/avatar.png"
# used for $$$$ quoted math formula
katex_enabled = true
# "left_sidebar" or "right_sidebar" or "no_sidebar"
sidebar = "right_sidebar"