cherrykitten.dev/config.toml

43 lines
895 B
TOML
Raw Permalink Normal View History

2023-01-28 18:40:47 +00:00
# The URL the site will be built for
2024-06-12 13:35:51 +00:00
base_url = "/"
2023-01-28 19:05:31 +00:00
title = "CherryKitten"
2023-01-28 18:40:47 +00:00
compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
2023-01-28 20:36:54 +00:00
generate_feed = true
feed_filename = "rss.xml"
2023-01-28 18:40:47 +00:00
taxonomies = [
{name = "tags"},
]
[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
2023-04-09 22:13:12 +00:00
extra_syntaxes_and_themes = ["highlight_themes"]
2023-01-28 21:03:46 +00:00
highlight_theme = "rosepine"
2023-01-28 18:40:47 +00:00
[extra]
# The logo text - defaults to "Terminimal theme"
logo_text = "CherryKitten"
menu_items = [
2024-06-12 13:43:28 +00:00
{name = "Home", url = "/"},
2023-01-28 18:40:47 +00:00
2024-06-12 13:43:28 +00:00
{name = "About me", url = "/about"},
2023-01-28 18:40:47 +00:00
2024-06-12 13:43:28 +00:00
{name = "Blog", url = "/blog"},
2023-01-28 18:40:47 +00:00
2024-06-12 13:43:28 +00:00
{name = "CV", url = "/cv"},
2024-03-09 12:34:33 +00:00
2024-06-12 13:43:28 +00:00
{name = "Contact", url = "/contact"},
2023-01-28 18:40:47 +00:00
]
page_titles = "combined"
2023-02-23 16:33:46 +00:00
post_view_navigation_prompt = "More posts!"