Initial commit
This commit is contained in:
commit
9a5b3e282a
17 changed files with 490 additions and 0 deletions
31
src/config.toml
Normal file
31
src/config.toml
Normal file
|
@ -0,0 +1,31 @@
|
|||
# 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_feed = false
|
||||
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue