2024-10-02 15:51:40 +00:00
|
|
|
# The site theme to use.
|
|
|
|
theme = "duckquill"
|
|
|
|
|
|
|
|
# The URL the site will be built for
|
|
|
|
base_url = "https://blog.grobecker.me"
|
|
|
|
|
|
|
|
# Whether to automatically compile all Sass files in the sass directory
|
|
|
|
compile_sass = true
|
|
|
|
|
|
|
|
# Whether to build a search index to be used later on by a JavaScript library
|
|
|
|
build_search_index = true
|
|
|
|
|
2024-10-03 15:07:46 +00:00
|
|
|
author = "Erik"
|
|
|
|
|
2024-10-02 15:51:40 +00:00
|
|
|
# smart_punctuation = true
|
|
|
|
# bottom_footnotes = true
|
|
|
|
|
|
|
|
|
|
|
|
[markdown]
|
|
|
|
# Whether to do syntax highlighting
|
|
|
|
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
|
|
|
|
highlight_code = true
|
|
|
|
smart_punctuation = true
|
|
|
|
bottom_footnotes = true
|
2024-10-04 15:20:54 +00:00
|
|
|
extra_syntaxes_and_themes = ["syntaxes/"] # for typst support
|
2024-10-02 15:51:40 +00:00
|
|
|
|
2024-10-03 15:07:46 +00:00
|
|
|
|
2024-10-02 15:51:40 +00:00
|
|
|
[extra]
|
|
|
|
# Put all your custom variables here
|
|
|
|
default_theme = "dark"
|
|
|
|
katex = true
|
|
|
|
|
|
|
|
# Sets theme and browser theme color.
|
|
|
|
# See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name/theme-color
|
|
|
|
accent_color = "#ff7800"
|
|
|
|
# Ditto but for the dark theme.
|
|
|
|
# If not set regular variant will be used.
|
2024-10-03 15:07:46 +00:00
|
|
|
accent_color_dark = "#380891"
|
2024-10-02 15:51:40 +00:00
|
|
|
|
|
|
|
# Ditto but for the dark theme.
|
2024-10-04 15:20:54 +00:00
|
|
|
fix_contrast_dark = false
|
2024-10-02 15:51:40 +00:00
|
|
|
|
|
|
|
show_read_time = true
|
|
|
|
|
2024-10-03 15:07:46 +00:00
|
|
|
show_copy_button = true
|
|
|
|
|
2024-10-02 15:51:40 +00:00
|
|
|
[extra.nav]
|
|
|
|
# Whether to show the Atom/RSS feed button in the nav
|
|
|
|
show_feed = true
|
|
|
|
# Whether to show the manual theme switcher in the nav
|
|
|
|
show_theme_switcher = true
|
|
|
|
# Whether to show the link to the source repository in the nav
|
|
|
|
show_repo = true
|
|
|
|
# Links used in the nav.
|
|
|
|
# For local files use same link format as in Markdown,
|
|
|
|
# i.e. "@/blog/_index.md".
|
|
|
|
# See https://www.getzola.org/documentation/content/linking/#internal-links
|
|
|
|
links = [
|
2024-10-03 15:07:46 +00:00
|
|
|
# { name = "Links", menu = [
|
|
|
|
# { url = "@/blog/_index.md", name = "Blog" },
|
|
|
|
# # { url = "@/demo/index.md", name = "Demo" },
|
|
|
|
# # { url = "@/mods/index.md", name = "Mods" },
|
|
|
|
# ] },
|
|
|
|
{ url = "@/blog/_index.md", name = "Blog"},
|
|
|
|
# { url = "https://daudix.one/coffee/", name = "Coffee" },
|
2024-10-02 15:51:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[extra.footer]
|
|
|
|
# Links used in the footer.
|
|
|
|
# Same as the nav ones.
|
|
|
|
links = [
|
|
|
|
{ url = "@/blog/_index.md", name = "Blog" },
|
|
|
|
# { url = "@/demo/index.md", name = "Demo" },
|
|
|
|
# { url = "@/mods/index.md", name = "Mods" },
|
2024-10-03 15:07:46 +00:00
|
|
|
# { url = "https://daudix.one/coffee/", name = "Coffee" },
|
2024-10-02 15:51:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[extra.toc]
|
|
|
|
# whether to render inline static TOC at the top of the articles or not
|
|
|
|
inline = true
|
|
|
|
# where to show the TOC as a pop-up button
|
|
|
|
popup = true
|
|
|
|
# Show numbered TOC
|
|
|
|
numbered = true
|