-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig_sample.toml
180 lines (137 loc) · 5 KB
/
config_sample.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# The base URL of the site.
base_url = "https://website-url.com/"
# To avoid problems with some variables due to multilingual support,
# you will find repeated variables in the language section,
# it is recommended that you keep those of your language and the general
# ones with the same data.
default_language = "en"
theme = "ataraxia"
# To find a detailed description of the following configuration variables
# you can go to https://www.getzola.org/documentation/getting-started/configuration/
output_dir = "public"
build_search_index = true
generate_feed = true
feed_filename = "atom.xml"
# feed_limit = 20
compile_sass = false
minify_html = false
hard_link_static = false
# ignored_content = []
[extra]
author = "Your name"
# Use a square image (same height as width)
avatar = "images/avatar.png"
# To use a favicon convert your image to https://realfavicongenerator.net/,
# then download and copy the package to static/images/favicon
favicon = true
locale = "en_US"
# Ataraxia uses Bootstrap icons,
# you can go to https://icons.getbootstrap.com/ to find the full list
[extra.menus]
nav = [
{ name = "Home", url = "@/_index.md", icon = "bi-house" },
{ name = "Blog", url = "@/blog/_index.md", icon = "bi-file-earmark-text" },
{ name = "Author", url = "https://gersonbdev.github.io/", icon = "bi-person" },
{ name = "About", url = "https://github.com/gersonbdev/ataraxia-zola", icon = "bi-question-octagon" }
]
[extra.social]
author_link = "https://author-url.com/"
twitter = "@user"
links = [
{ name = "Email", url = "mailto:[email protected]", icon = "bi-envelope-fill" },
{ name = "GitHub", url = "https://github.com/", icon = "bi-github" },
{ name = "Twitter", url = "https://twitter.com/", icon = "bi-twitter" },
{ name = "LinkedIn", url = "https://www.linkedin.com/", icon = "bi-linkedin" },
{ name = "Facebook", url = "https://www.facebook.com/", icon = "bi-facebook" }
]
[extra.seo]
google_analytics = "G-0123456789"
google_search_console = "0123457890abcdefg"
[extra.comments]
disqus = "user"
[extra.copyright]
name = "CC BY 4.0"
url = "https://creativecommons.org/licenses/by/4.0/"
[languages]
[languages.en]
title = "Website name"
description = "Website Description"
generate_feed = true
feed_filename = "atom.xml"
taxonomies = [
{ name = "tags", feed = true, paginate_by = 5 },
{ name = "categories", feed = true, paginate_by = 5 }
]
[languages.es]
title = "Nombre del sitio web"
description = "Descripción del sitio web"
generate_feed = true
feed_filename = "atom.xml"
taxonomies = [
{ name = "tags", feed = true, paginate_by = 5 },
{ name = "categories", feed = true, paginate_by = 5 }
]
[languages.en.translations]
post = "Post"
category = "Category"
tag = "Tag"
search = "Search"
404_message = "Page not found"
by = "By"
posted = "Posted"
updated = "Updated"
categories = "Categories"
tags = "Tags"
share = "Share"
next = "Next"
previous = "Previous"
short_copyright = "Some rights reserved."
full_copyright = """\
Except where otherwise noted, the blog posts on this site are \
licensed under the Creative Commons Attribution 4.0 International \
(CC BY 4.0) License by the author.\
"""
[languages.es.translations]
post = "Entrada"
category = "Categoría"
tag = "Etiqueta"
search = "Buscar"
404_message = "Página no encontrada"
by = "Por"
posted = "Publicado"
updated = "Actualizado"
categories = "Categorías"
tags = "Etiquetas"
share = "Compartir"
next = "Siguiente"
previous = "Anterior"
short_copyright = "Algunos derechos reservados."
full_copyright = """\
Salvo que se indique explícitamente, las entradas de este blog \
están licenciadas bajo la Creative Commons Attribution 4.0 \
International (CC BY 4.0) License por el autor.\
"""
[markdown]
highlight_code = true
# extra_syntaxes_and_themes = []
highlight_theme = "gruvbox-dark"
render_emoji = true
external_links_target_blank = true
external_links_no_follow = true
external_links_no_referrer = true
smart_punctuation = false
[search]
include_title = true
include_description = false
include_path = false
include_content = true
# truncate_content_length = 100
[link_checker]
# skip_prefixes = []
# skip_anchor_prefixes = []
internal_level = "error"
external_level = "error"
[slugify]
paths = "on"
taxonomies = "on"
anchors = "on"