-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
40 lines (34 loc) · 1.32 KB
/
config.toml
File metadata and controls
40 lines (34 loc) · 1.32 KB
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
# The URL the site will be built for
base_url = "https://sinon.github.io"
default_language = "en"
title = "Rob's Blog | Python • Rust • Ramblings?"
# 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
generate_feeds = true
feed_filenames = ["rss.xml"]
theme = "after-dark"
taxonomies = [{ name = "tags", feed = true }]
[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 = "axar"
render_emoji = true
[extra]
author = "Rob Hand"
codeblock = true
after_dark_menu = [
{ name = "Home", url = "$BASE_URL" },
{ name = "About", url = "$BASE_URL/about/" },
{ name = "Now", url = "$BASE_URL/now/" },
{ name = "Boardgames", url = "$BASE_URL/boardgames" },
{ name = "TILs", url = "$BASE_URL/tils/" },
{ name = "Tags", url = "$BASE_URL/tags" },
{ name = "Source", url = "https://github.com/sinon/sinon.github.io" },
{ name = "GitHub", url = "https://github.com/sinon" },
{ name = "CV", url = "https://raw.githubusercontent.com/sinon/CV/main/cv.pdf" },
{ name = "RSS", url = "$BASE_URL/rss.xml" },
]
after_dark_title = "Rob's Blog | Python • Rust • Ramblings?"