summaryrefslogtreecommitdiffstats
path: root/src/config.toml
blob: 3b10361ca4cf27683c5e330f017fad106a21180c (plain) (blame)
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
# serene v5.2.1
#
# - docs: https://github.com/isunjn/serene/blob/latest/USAGE.md
# - check for updates: https://github.com/isunjn/serene/releases
#
#=========================================================================================

base_url = "https://b-peetz.de"
title = "Soispha Peetz"
description = "My website"
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 = "science", feed = true },
  { name = "tags" },
  { name = "categories" },
]

[markdown]
render_emoji = false
external_links_target_blank = false
external_links_no_follow = true
external_links_no_referrer = true
smart_punctuation = false

[markdown.highlighting]
error_on_missing_language = true

style = "class"
light_theme = "github-light"
dark_theme = "github-dark"


[slugify]
paths = "on"
taxonomies = "on"
anchors = "on"

#=========================================================================================
[extra]
nav = [
  { name = "blog", path = "/blog", is_external = false },
  { name = "writings", path = "/writings", is_external = false },
  { name = "contact", path = "/contact", is_external = false },
  { name = "git", path = "https://git.foss-syndicate.org/bpeetz", is_external = true },
]

# Your info on the home page, if you don't want to display handle/bio/avatar, simply comment out that line
name = "Soispha Peetz"
handle = "soispha"
# bio = "dog person, killer"
# avatar = "img/avatar.webp"

links = [
  { name = "Git", icon = "git", url = "https://git.foss-syndicate.org/bpeetz" },
  { name = "Email", icon = "email", url = "mailto:soispha@b-peetz.de" },
  { name = "Matrix", icon = "matrix", url = "https://matrix.to/#/@soispha:matrix.vhack.eu" },
  { name = "Signal", icon = "signal", url = "https://signal.me/#eu/0VgltiXf19Tu_tRdpucNYYHXo26LGd2az_w_SHPD_qrUe2xOlMZHybrLzM_-NoKu" },
]
blog_section_path = "/blog"

back_link_text = "Back" # Text of the back button
color_scheme = "auto"   # "auto" | "light" | "dark"

# og_image = "img/og.png" # The default image for social media sharing (Open Graph), a path in static folder or a full URL

footer_copyright = "© 2025 Soispha Peetz"
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 »"

# Site-wide default values of display options, can be overridden in a section's `_index.md`, and again in a post's front-matter
date_format = "%b %-d, %Y"
toc = true                                                      # show table-of-contents
code_copy = true                                                # show copy button in code block
comment = false                                                 # enable comment
math = false                                                    # enable formula rendering with KaTeX
mermaid = false                                                 # enable chart rendering with Mermaid
outdated_alert = true                                           # show outdate alert after certain days
outdated_alert_days = 256
outdated_alert_text_before = "This article was last updated "
outdated_alert_text_after = " days ago and may be out of date."

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"