34 lines
874 B
TOML
34 lines
874 B
TOML
# The URL the site will be built for
|
|
base_url = "https://www.chvp.be"
|
|
|
|
title = "Charlotte Van Petegem's website"
|
|
description = "Blog posts and other musings"
|
|
|
|
# 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 = false
|
|
|
|
generate_feeds = false
|
|
|
|
# Ignore images, they should always be processed
|
|
ignored_content = ["*.jpg", "*.png"]
|
|
|
|
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
|
|
highligt_theme = "ayu-dark"
|
|
external_links_target_blank = true
|
|
external_links_no_follow = true
|
|
external_links_no_referrer = true
|
|
smart_punctuation = true
|
|
|
|
|
|
[extra]
|
|
# Put all your custom variables here
|