-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
119 lines (96 loc) · 2.62 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# The URL the site will be built for
base_url = "/"
theme = "zhuia"
title = "Wallet Test Framework"
description = "A testing framework for Ethereum wallets."
# 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 = true
# 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 = true
[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 = "Wallet Test Framework"
show_author = true
show_tags = true
show_categories = true
read_more_prompt = "read more"
read_post_prompt = "read post"
# Menu
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://discord.gg/uFTHmUcF58", name = "discord"},
# {url = "https://twitter.com/gicrisf", name = "twitter"},
{url = "https://github.com/wallet-test-framework", name = "github"},
# {url = "", name = "instagram"},
# {url = "", name = "facebook"},
]
[extra.sidebar]
# Enable/Disable sidebar
active=true
# Include a text snippet in the sidebar
# You can format it with HTML
text_snippet="""
<style>
.sponsors {
list-style: none;
text-align: center;
}
.sponsors > li {
display: inline-block;
width: 64px;
height: 64px;
}
.sponsors img {
max-width: 64px;
max-height: 64px;
}
</style>
<h4>Sponsors</h4>
<ul class="sponsors">
<li>
<a title="Brave" href="https://brave.com/">
<img alt="Brave Logo" src="/sponsors/brave.svg">
</a>
</li>
<li>
<a title="Ethereum Foundation" href="https://esp.ethereum.foundation/">
<img alt="Ethereum Logo" src="/sponsors/ef.svg">
</a>
</li>
</ul>
"""
# Author card
author_bio = "A testing framework for Ethereum wallets"
author_avatar = "wtf-logo.svg"
# Include search bar
# TODO template
# Embed twitter iframe in the sidebar
popular_tags=false
archive=false
related_posts=false #TODO