-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
49 lines (38 loc) · 1.45 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
# The URL the site will be built for
base_url = "https://blog.littleji.com"
theme = "tabi"
title = "littleji's blog"
taxonomies = [{name = "tags", feed = true}]
default_language = "zh"
# 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
[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 = "css"
[search]
index_format = "elasticlunr_json" # Or the less efficient "elasticlunr_javascript".
include_title = true
include_description = true
include_path = true
include_content = true
[extra]
# Put all your custom variables here
menu = [
{ name = "home", url = "blog", trailing_slash = true },
{ name = "archive", url = "archive", trailing_slash = true },
{ name = "tags", url = "tags", trailing_slash = true },
{ name = "projects", url = "projects", trailing_slash = true },
]
footer_menu = [
{url = "pages/about", name = "about", trailing_slash = true},
{url = "privacy", name = "privacy", trailing_slash = true},
# {url = "https://tabi-stats.osc.garden", name = "site_statistics", trailing_slash = true},
{url = "sitemap.xml", name = "sitemap", trailing_slash = false},
]
socials = [
{ name = "github", url = "https://github.com/littleji/", icon = "github" },
]