-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
58 lines (44 loc) · 1.34 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
base_url = "https://mabez.dev"
# Used in RSS by default
title = "Scott Mabin"
description = "Scott Mabin's blog"
# The default language, used in RSS
default_language = "en"
# Whether to generate a RSS feed automatically
generate_feed = true
feed_filename = "rss.xml"
# 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
theme = "hermit_zola"
taxonomies = [
{name = "tags", rss = true}
]
[markdown]
render_emoji = true
# Highlight all code blocks found
highlight_code = true
# Which theme to use for the code highlighting.
# See below for list of accepted values
# highlight_theme = "visual-studio-dark"
highlight_theme = "base16-ocean-dark"
[link_checker]
internal_level = "error"
external_level = "warn"
[extra]
home_subtitle = ""
footer_copyright = ' · <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
hermit_menu = [
{ link = "/blog/posts", name = "Blog" },
]
hermit_social = [
{ name = "linkedin", link = "https://www.linkedin.com/in/scott-mabin" },
{ name = "github", link = "https://github.com/mabezdev" },
]
[extra.author]
name = "Scott Mabin"
email = "[email protected]"
[extra.google_analytics]
enable = true
id = "UA-146726046-1"