-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
63 lines (49 loc) · 1.83 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
60
61
62
63
# The URL the site will be built for
base_url = "https://barretts.club" # change for your site
# 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 # TODO: set this up?
# Feed config
generate_feed = true # set to false to disable!
feed_filename = "atom.xml"
#feed_limit = 20 # maximum num of articles in feed. 0 = inf
default_language = "en" # language to show in feeds
taxonomies = [{ name = "tags", feed = true, paginate_by = 10 }]
[slugify]
paths = "safe"
taxonomies = "safe"
anchors = "safe"
[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 = "css"
render_emoji = true # ex. :smile: --> 😄
# Put all your custom variables here
[extra]
site_name = "Barrett's Club" # change to your site's name
site_desc = "Welcome to the Club!" # a little slogan or something idk
favicon = "svg/box.svg" # use an svg please! leave blank if no favicon
author = "Barrett" # put your name here!
#
[extra.copyright]
enable = true
use_copyleft = true
include_author_name = false
[extra.header_nav]
get = [
{ name = "Home", link = "/" },
{ name = "Articles", link = "posts" },
{ name = "About", link = "about" },
{ name = "Contact", link = "contact" },
]
[extra.date]
use_ansi_time = true # change if you hate freedom
# warning: Please put "https" before an external link
[extra.footer_nav]
get = [
{ name = "RSS Feed", link = "atom.xml", icon = "fa-solid fa-rss" },
{ name = "GitHub", link = "https://github.com/onkoe/barretts-club", icon = "fa-brands fa-github" },
{ name = "Privacy Policy", link = "privacy_policy" },
]