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
75
76
77
78
79
|
# The URL the site will be built for
base_url = "https://blog.garhve.com"
# Set theme
#theme = ""
# The site title and description; used in feeds by default.
title = "garhve's gibberish"
description = "a place for me to jibber jabber"
# The default language; used in feeds.
default_language = "en"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# The taxonomies to be rendered for the site and their configuration.
# Example:
# taxonomies = [
# {name = "tags", feed = true}, # each tag will have its own feed
# {name = "tags", lang = "fr"}, # you can have taxonomies with the same name in multiple languages
# {name = "categories", paginate_by = 5}, # 5 items per page for a term
# {name = "authors"}, # Basic definition: no feed or pagination
# ]
taxonomies = [
{name = "categories", rss = false},
{name = "tags", rss = false},
]
# The additional languages for the site.
# Example:
# languages = [
# {code = "fr", feed = true}, # there will be a feed for French content
# {code = "fr", search = true}, # there will be a Search Index for French content
# {code = "it"}, # there won't be a feed for Italian content
# ]
[markdown]
# When set to "true", all code blocks are highlighted.
highlight_code = true
# The theme to use for code highlighting.
# See below for list of allowed values.
highlight_theme = "nord"
# When set to "true", emoji aliases translated to their corresponding
# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄)
render_emoji = false
[search]
# Whether to include the title of the page/section in the index
include_title = false
# Whether to include the description of the page/section in the index
include_description = false
# Whether to include the rendered content of the page/section in the index
include_content = false
[extra]
# Author name, appears in footer.
author = "garhve"
# Path to the header icon / favicon image.
# Please save image to static/images
icon = "/images/logo.ico"
favicon = "/images/favicon.png"
# header icon width.
# height will be automatically rendered.
iconsize = 70
# number of posts in index.html.
indexposts = 100
# switch to dark-theme
dark_mode = true
# show theme-toggler
theme_toggler = true
|