-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
74 lines (58 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
# Used in RSS by default
title = "tieje"
description = "tieje blog"
# The default language, used in RSS
default_language = "en"
# The URL the site will be built for
base_url = "https://tieje.github.io"
theme = "hermit_zola"
# The taxonomies to be rendered for that site and their configuration
# Example:
# taxonomies = [
# {name = "tags", rss = true}, # each tag will have its own RSS feed
# {name = "categories", paginate_by = 5}, # 5 items per page for a term
# {name = "authors"}, # Basic definition: no RSS or pagination
# ]
#
taxonomies = [
{name = "tags", rss = true}
]
# 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 = 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 = "agola-dark"
clipboard = true
[link_checker]
internal_level = "error"
external_level = "warn"
[extra]
# Put all your custom variables here
home_subtitle = "Programmer, chemist"
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 = "/posts", name = "Posts" },
{ link = "/about", name = "About" },
# { link = "/posts/unofficial-powell-docs", name = "Unofficial Powell 365 Documentation" },
]
hermit_social = [
{ name = "github", link = "https://github.com/tieje" },
{ name = "email", link = "mailto:[email protected]" },
{ name = "linkedin", link = "https://www.linkedin.com/in/thomas-james-libiano-francis/" }
]
[extra.highlightjs]
enable = true
clipboard = true
theme = "vs2015"
[extra.disqus]
enable = true
shortname = "https-tieje-github-io"
[extra.author]
name = "Thomas Francis"
email = "[email protected]"
[extra.google_analytics]
enable = false