-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
59 lines (43 loc) · 1.5 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
# The URL the site will be built for
base_url = "http://nytefyre.net"
title = "nytefyre/net4.0"
default_language = "en"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
theme = "hermit_zola"
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
# When set to "true", an RSS feed is automatically generated.
generate_feeds = true
taxonomies = [
{name = "tags", rss = 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 = "charcoal"
[extra]
# Put all your custom variables here
date_format = "%F"
toc=true
home_subtitle = "something something words"
footer_copyright = ' · <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank" rel="noopener">CC BY-SA 4.0</a>'
hermit_menu = [
{ link = "/posts", name = "Posts" },
{ link = "/tags", name = "Tags" },
{ link = "/about", name = "About" },
]
hermit_social = [
{ name = "mastodon", link = "https://hachyderm.io/@gregswift" },
{ name = "github", link = "https://github.com/gregoryswift" },
{ name = "linkedin", link = "https://linkedin.com/in/gregoryswift" },
{ name = "email", link = "mailto:[email protected]" },
]
[extra.author]
name = "Greg Swift"
email = "[email protected]"
homepage = "http://nytefyre.net"
[extra.google_analytics]
enable = true
id = "UA-12850853-4"