diff options
Diffstat (limited to 'src/config.toml')
| -rw-r--r-- | src/config.toml | 50 |
1 files changed, 38 insertions, 12 deletions
diff --git a/src/config.toml b/src/config.toml index 69ac342..3b10361 100644 --- a/src/config.toml +++ b/src/config.toml @@ -26,45 +26,71 @@ taxonomies = [ ] [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 +[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] - -sections = [ +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 -force_theme = false # false | "light" | "dark" +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 +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" |
