-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.toml
137 lines (103 loc) · 3.7 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# The base URL of the site.
base_url = "https://rustdelhi.in"
# 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 = true
minify_html = false
hard_link_static = false
# ignored_content = []
[extra]
author = "RustDelhi"
# Use a square image (same height as width)
avatar = "images/logo/svg/rustdelhi-logo.svg"
# 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 = "Events", url = "@/events/_index.md", icon = "bi-people-fill" },
]
[extra.social]
author_link = "https://rustdelhi.in/"
twitter = "@rustdelhi"
links = [
{ name = "Telegram", url = "https://t.me/RustDelhi", icon = "bi-telegram" },
{ name = "GitHub", url = "https://github.com/rustdelhi", icon = "bi-github" },
{ name = "Twitter", url = "https://twitter.com/rustdelhi", icon = "bi-twitter" },
{ name = "LinkedIn", url = "https://www.linkedin.com/company/rustdelhi/", icon = "bi-linkedin" },
{ name = "Email", url = "mailto:[email protected]", icon = "bi-envelope-fill" },
]
[extra.comments]
disqus = "user"
[extra.copyright]
name = "CC BY 4.0"
url = "https://creativecommons.org/licenses/by/4.0/"
[languages]
[languages.en]
title = "RustDelhi"
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.\
"""
[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"