-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
47 lines (35 loc) · 1.28 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
# The URL the site will be built for
base_url = "https://rust-trends.com"
title = "Rust Trends"
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
theme = "apollo"
generate_feeds = true
compile_sass = true
minify_html = true
feed_filenames = ["rss.xml"]
[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
[extra]
# Put all your custom variables here
toc = true
use_cdn = false
favicon = "icon/favicon.ico"
theme = "dark"
# mode = "toggle"
# mathjax = true
# mathjax_dollar_inline_enable = true
menu = [
{ name = "/newsletter", url = "/newsletter/", weight = 1, slash = true },
{ name = "/posts", url = "/posts/", weight = 2, slash = true },
{ name = "/faq", url = "/faq/", weight = 3, slash = true },
{ name = "/about", url = "/about/", weight = 4, slash = true },
{ name = "/contact", url = "/contact/", weight = 5, slash = true },
{ name = "/sign up", url = "/signup/", weight = 6, slash = true },
]
socials = [
{ name = "linkedin", url = "https://www.linkedin.com/company/rust-trends", icon = "linkedin" },
{ name = "github", url = "https://github.com/rust-trends/", icon = "github" },
]