-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
59 lines (47 loc) · 1.62 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
# The URL the site will be built for
base_url = "https://micahkepe.com/blog"
title = "Micah's Secret Blog"
theme = "radion"
description = "An assortment of my ramblings and random adventures."
generate_feeds = true
taxonomies = [
# You can enable/disable RSS
{name = "categories", feed = true},
{name = "tags", feed = true},
]
# When set to "true", the Sass files in the `sass` directory in the site root are compiled.
# Sass files in theme directories are always compiled.
compile_sass = false
# 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]
# Wether to produce the search index as a javascript file or as a JSON file
# Accepted values:
# - "elasticlunr_javascript", "elasticlunr_json"
# - "fuse_javascript", "fuse_json"
index_format = "elasticlunr_json"
[extra]
# Put all your custom variables here
radion_title = "Micah's Secret Blog"
author = "Micah Kepe"
github = "https://github.com/micahkepe"
radion_menu = [
{url = "$BASE_URL/", name = "Home"},
{url = "$BASE_URL/categories", name = "Categories"},
{url = "$BASE_URL/tags", name = "Tags"},
{url = "https://micahkepe.com/", name = "Main Site"},
]
# Nicer codeblocks with copy to clipboard
codeblock = true
# Enable MathJax rendering support
latex = true
# Enable search bar
enable_search = true
# Light/Dark Mode set
theme = "toggle" # options: {light, dark, auto, toggle}