-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
36 lines (28 loc) · 998 Bytes
/
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
# The URL the site will be built for
base_url = "https://perfectday20.me"
title = "PerfectDay20's Blog"
description = "no desc"
theme = "hook"
# The default language; used in feeds and search index
# Note: the search index doesn't support Chinese/Japanese/Korean Languages
default_language = "en"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to generate a feed file for the site
generate_feeds = true
# When set to "true", the generated HTML files are minified.
minify_html = false
# The taxonomies to be rendered for the site and their configuration.
taxonomies = [
{name = "categories"}, # Basic definition: no feed or pagination
{name = "tags"}, # Basic definition: no feed or pagination
]
[markdown]
highlight_code = true
highlight_theme = "solarized-light"
[extra]
# Put all your custom variables here
links = [
{ title = "GitHub", href = "https://github.com/PerfectDay20" },
{ title = "RSS", href = "atom.xml" },
]