-
Notifications
You must be signed in to change notification settings - Fork 10
/
config.toml
93 lines (70 loc) · 2.2 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# The URL the site will be built for
base_url = "/"
title = "Zhuia"
description = "Another Zola theme, this time written with Spectre."
# 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
# Built in taxonomies of huia.
taxonomies = [
{name = "tags"},
{name = "categories"},
]
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = false
[extra]
# The max-width of the page content
grid_size = "grid-lg"
# Whether to enable KaTeX or not
katex = true
# Default author for articles
author = "You"
show_author = true
show_tags = true
show_categories = true
read_more_prompt = "read more"
read_post_prompt = "read post"
# Menu
logo_image = "./logo.svg"
hamburger_menu = true
# Menu items to display. You define a url and the name of the menu item.
# NOTE: `$BASE_URL/` must be included in the url name.
main_menu = [
{url="/tags/", name="tags"},
{url="/categories/", name="categories"},
{url="/about", name="about"},
]
# Footer
# footer_tagline = "Your tagline"
# Social media buttons to display. You define a url and the name of the platform.
social_links = [
{url = "https://t.me/zwitterio", name = "telegram"},
{url = "https://twitter.com/gicrisf", name = "twitter"},
{url = "https://github.com/gicrisf", name = "github"},
# {url = "", name = "instagram"},
# {url = "", name = "facebook"},
# {url = "", name = "bookstack"},
# {url = "", name = "dokuwiki"},
]
[extra.sidebar]
# Enable/Disable sidebar
active=true
# Include a text snippet in the sidebar
# You can format it with HTML
text_snippet="Some <strong>HTML</strong> here! It's <mark>safe</mark>!"
# Author card
author_bio = "Ciao, sono io, l'author bio"
author_avatar = "avatar.png"
# Include search bar
# TODO template
# Embed twitter iframe in the sidebar
tweets_by="gicrisf"
popular_tags=false
archive=false
related_posts=false #TODO