-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.toml
More file actions
65 lines (54 loc) · 2.21 KB
/
config.toml
File metadata and controls
65 lines (54 loc) · 2.21 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
base_url = "https://massivebird.github.io/"
title = "Garrett's brain"
description = "Garrett blogs about computer stuff"
default_language = "en"
theme = "serene"
output_dir = "public"
compile_sass = true
minify_html = false # Keep this false, as it may cause issues with some styles
build_search_index = false # Keep this false, search is temporarily unsupported
generate_feeds = false # Whether to generate a feed file in root, read docs for more info about rss feed
feed_filenames = ["feed.xml"] # "feed.xml" | "atom.xml" | "rss.xml", read docs for more info
taxonomies = [{ name = "tags" }, { name = "categories" }]
# The default author for pages
author = "massivebird"
[markdown]
highlight_code = true
# highlight_theme = "css"
# extra_syntaxes_and_themes = ["highlight_themes"]
# highlight_themes_css = [
# { theme = "serene-light", filename = "hl-light.css" },
# { theme = "serene-dark", filename = "hl-dark.css" },
# ]
render_emoji = false
external_links_target_blank = false
external_links_no_follow = true
external_links_no_referrer = true
smart_punctuation = false
[slugify]
paths = "on"
taxonomies = "on"
anchors = "on"
[extra]
sections = [
{ name = "posts", path = "/posts", is_external = false },
{ name = "projects", path = "/projects", is_external = false },
{ name = "about", path = "/about", is_external = false },
# { name = "tags", path = "/tags", is_external = false },
]
blog_section_path = "/posts"
back_link_text = "Back" # Text of the back button
force_theme = false # false | "light" | "dark"
footer_copyright = "© 2025 massivebird"
footer_credits = true # Whether to show "Built with zola and serene" in footer
not_found_error_text = "404 Not Found"
not_found_recover_text = "« back to home »"
reaction = false # Whether to enable anonymous emoji reactions (Note: You need to set up a working api endpoint to enable this feature)
reaction_align = "right" # "left" | "center" | "right"
reaction_endpoint = "https://example.com/api/reaction"
# repo_url = "https://github.com/massivebird/massivebird.github.io/tree/main/content/"
# menu = [
# { name = "/blog", url = "/blog", weight = 1 },
# { name = "/projects", url = "/projects", weight = 2 },
# { name = "/about", url = "/about", weight = 3 },
# ]