-
Notifications
You must be signed in to change notification settings - Fork 71
/
config.toml
42 lines (33 loc) · 1007 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
34
35
36
37
38
39
40
41
42
base_url = "https://getzola.github.io/after-dark/"
compile_sass = true
title = "after-dark theme"
description = "A robust, elegant dark theme"
generate_feeds = true
taxonomies = [
{name = "categories", feed = true},
{name = "tags", feed = true},
]
# When set to "true", a search index is built from the pages and section
# content for `default_language`.
build_search_index = true
[markdown]
# Whether to do syntax highlighting
# Theme can be customized by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
highlight_theme = "one-dark"
[search]
index_format = "elasticlunr_json"
[extra]
author = "John Doe"
after_dark_menu = [
{url = "$BASE_URL", name = "Home"},
{url = "$BASE_URL/categories", name = "Categories"},
{url = "$BASE_URL/tags", name = "Tags"},
]
after_dark_title = "My Example Site"
# Nicer codeblocks with copy to clipboard
codeblock = true
# Enable MathJax support
latex = true
# Enable search bar
enable_search = true