-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
39 lines (30 loc) · 1021 Bytes
/
config.toml
File metadata and controls
39 lines (30 loc) · 1021 Bytes
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
# The URL the site will be built for
base_url = "https://sourbyte.dev"
title = "SourByte.dev"
description = "A small blog to keep myself accountable and share some of the stuff I make."
# Whether to automatically compile all Sass files in the sass directory
compile_sass = false
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
author = "Zenger"
generate_feed = true
minify_html = true
[slugify]
post_keep_dates = 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
[extra]
# Put all your custom variables here
menu = [
{ title = "Home", path = "/"},
{ title = "Experiments", path = "/experiments/"},
{ title = "Thoughts", path = "/thoughts/"},
{ title = "Code", path = "/code/"},
{ title = "Stories", path = "/stories/"},
{ title = "About", path = "/about/"},
]
taxonomies = [
{ name = "code", feed = true }
]