-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.toml
46 lines (34 loc) · 1.24 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
# The URL the site will be built for
base_url = "https://rust.azdevs.org"
# Used in RSS by default
title = "Desert Rust"
description = "Phoenix Rust Community"
# The default language, used in RSS
default_language = "en"
theme = "even"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# 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 = "ayu-light"
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
# Whether to generate a RSS feed automatically
generate_rss = true
generate_categories_pages = true
generate_tags_pages = true
taxonomies = [
{name = "categories", rss = true},
{name = "tags", rss = true},
]
[extra]
even_menu = [
{url = "$BASE_URL", name = "Home"},
{url = "$BASE_URL/tags", name = "Topics"},
{url = "https://www.meetup.com/Desert-Rustaceans/", name = "Meetup"},
{url = "https://www.facebook.com/groups/873973386288785/", name = "Facebook"},
{url = "https://azdevs.org", name = "Slack #rust"},
{url = "https://github.com/azdevs/desert-rustaceans", name = "Github"},
]
even_title = "Desert Rust"