055790d9ce
The nixpkgs bump to nixos-26.05 pulls in Zola 0.22, which replaced the syntect highlighting backend with Giallo and changed the config schema. Replace the removed `highlight_code` key with a `[markdown.highlighting]` table using the `one-dark-pro` theme. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
# The URL the site will be built for
|
|
base_url = "https://project-cloud.net"
|
|
title = "project-cloud"
|
|
description = "Cloud and blog platform for personal and consulting projects."
|
|
|
|
# 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
|
|
theme = "DeepThought"
|
|
minify_html = true
|
|
|
|
taxonomies = [
|
|
{ name = "categories", feed = true, paginate_by = 10 },
|
|
{ name = "tags", feed = true, paginate_by = 10 },
|
|
]
|
|
|
|
[search]
|
|
include_title = true
|
|
include_description = false
|
|
include_path = false
|
|
include_content = true
|
|
|
|
[markdown]
|
|
[markdown.highlighting]
|
|
theme = "one-dark-pro"
|
|
|
|
[extra]
|
|
list_pages = true
|
|
toc = true
|
|
katex.enabled = true
|
|
katex.auto_render = true
|
|
navbar_items = [
|
|
{ code = "en", nav_items = [
|
|
{ url = "/", name = "/home/"},
|
|
{ url = "/posts", name = "/posts/"},
|
|
{ url = "https://git.project-cloud.net", name = "/git/"},
|
|
#{ url = "https://cloud.project-cloud.net", name = "/cloud/"}
|
|
]},
|
|
]
|
|
|
|
[extra.social]
|
|
|
|
# Author details
|
|
[extra.author]
|
|
name = "Asmir Abdulahovic"
|
|
avatar = "images/my_avatar.webp"
|