-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
110 lines (93 loc) · 3.64 KB
/
Copy pathconfig.toml
File metadata and controls
110 lines (93 loc) · 3.64 KB
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
# The URL the site will be built for
base_url = "https://abeldonate.github.io/"
title = "Abel Doñate Muñoz"
description = ""
default_language = "en"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# When set to "true", a search index is built from the pages and section
# content for `default_language`.
build_search_index = false
# When set to "true", a feed is automatically generated.
generate_feed = true
# The taxonomies to be rendered for the site and their configuration of the default languages
taxonomies = [
{ name = "tags", feed=true, lang = "en"},
{ name = "categories", feed=true, lang = "en"},
]
[markdown]
# When set to "true", all code blocks are highlighted.
highlight_code = true
# The theme to use for code highlighting.
# See Zola configuration docs for list of allowed values.
highlight_theme = "material-light"
[languages]
[languages.en.translations]
projects = "Projects"
lectures = "Lectures"
readings = "Readings"
thoughts = "Thoughts"
blog = "Blog"
about = "About"
recent_projects = "Recent Projects"
recent_lectures = "Recent Lectures"
recent_readings = "Recent Readings"
recent_thoughts = "Recent Thoughts"
more_lectures = "More Lectures"
more_projects = "More Projects"
more_readings = "More Readings"
more_thoughts = "More Thoughts"
recent_blog_posts = "Recent Blog Posts"
more_blog_posts = "More blog posts"
tag = "Tag"
tags = "Tags"
to_all_tags = "To all tags"
category = "Category"
categories = "Categories"
to_all_categories = "To all categories"
view_by = "View by"
other = "Other"
minute = "min"
prev_page = "To newer posts"
next_page = "To older posts"
# Customize your post date format. See: https://tera.netlify.app/docs/#date
date_format = "%B %e, %Y"
[extra]
katex_enable = true
katex_auto_render = true
# Development environment. Used by the page macros to load remote content only when in "prod" mode
env = "ZOLA_ENV"
# List of Papaya navigational menu items. Used to construct the navigation bar. See the README for item schema.
menu_items = [
{ name = "projects", url = "$LANG_BASE_URL/projects", show_recent = true, recent_items = 3, recent_trans_key = "recent_projects", more_trans_key = "more_projects" },
{ name = "lectures", url = "$LANG_BASE_URL/lectures", show_recent = true, recent_items = 3, recent_trans_key = "recent_lectures", more_trans_key = "more_lectures" },
{ name = "readings", url = "$LANG_BASE_URL/readings", show_recent = true, recent_items = 3, recent_trans_key = "recent_readings", more_trans_key = "more_readings" },
{ name = "thoughts", url = "$LANG_BASE_URL/thoughts", show_recent = true, recent_items = 3, recent_trans_key = "recent_thoughts", more_trans_key = "more_thoughts" },
#{ name = "blog", url = "$LANG_BASE_URL/blog", show_recent = true, recent_items = 3, recent_trans_key = "recent_blog_posts", more_trans_key = "more_blog_posts" },
# tag is not a zola section, it's just a link.
{ name = "tags", url = "$LANG_BASE_URL/tags" },
{ name = "about", url = "$LANG_BASE_URL/about", show_recent = false },
]
[extra.images]
# Width defined in pixels a
max_width = 2500
# Open Graph Protocol objects. See: https://ogp.me/
[extra.ogp]
locale = "en_US"
first_name = "Abel"
last_name = "Doñate"
gender = "male"
username = "abeldonate"
# Footer social links; full options listed in macros/social.html
[extra.social]
dark = "dark-mode"
email = "abel.donate.munoz@gmail.com"
github = "abeldonate"
linkedin = "a"
twitter = "abeldm3108"
other = [
{ name = "BTC", font_awesome = "fa-brands fa-btc", url = "https://www.bitcoin.com/" }
]
# CDN links
[extra.cdn]
font_awesome = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"