-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathconfig.toml
74 lines (54 loc) · 1.65 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
# The URL the site will be built for
base_url = "//archie-zola.netlify.app/"
# The site title and description; used in feeds by default.
title = "archie-zola"
description = "A zola theme forked from [archie](https://github.com/athul/archie)"
# 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 = false
taxonomies = [{ name = "tags" }]
default_language = "en"
[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 = "OneHalfLight"
[extra]
# control dark mode: auto | dark | toggle
mode = "toggle"
# interal CDN resource
useCDN = false
favicon = "/icon/favicon.png"
copyright = "keith"
ga = "G-6YGDB8SLBT"
katex_enable = true
[extra.translations]
languages = [{name = "en", url = "/"}]
[[extra.translations.en]]
show_more = "Read more ⟶"
previous_page = "← Previous"
next_page = "Next →"
posted_on = "on "
posted_by = "Published by"
read_time = "minute read"
all_tags = "All tags"
menus = [
{ name = "Home", url = "/", weight = 2 },
{ name = "All posts", url = "/posts", weight = 2 },
{ name = "About", url = "/about", weight = 3 },
{ name = "Tags", url = "/tags", weight = 4 },
]
# config social icon info in the footer
[[extra.social]]
icon = "github"
name = "GitHub"
url = "https://github.com/XXXMrG/archie-zola"
[[extra.social]]
icon = "twitter"
name = "Twitter"
url = "https://github.com/XXXMrG/"
[[extra.social]]
icon = "gitlab"
name = "GitLab"
url = "https://gitlab.com/your-name/"