initial commit
This commit is contained in:
commit
429a176559
59 changed files with 4097 additions and 0 deletions
56
config.toml
Normal file
56
config.toml
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
title = "Harald Hoyer"
|
||||
description = "Triple Faults for Debug"
|
||||
|
||||
# The URL the site will be built for
|
||||
base_url = "https://harald.hoyer.xyz"
|
||||
|
||||
# Whether to automatically compile all Sass files in the sass directory
|
||||
compile_sass = true
|
||||
|
||||
# Whether to do syntax highlighting
|
||||
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
|
||||
highlight_code = true
|
||||
|
||||
# Whether to build a search index to be used later on by a JavaScript library
|
||||
build_search_index = true
|
||||
|
||||
theme = "zola-clean-blog"
|
||||
|
||||
taxonomies = [
|
||||
{name = "categories", rss = true, paginate_by=5},
|
||||
{name = "tags", rss = true, paginate_by=5},
|
||||
]
|
||||
|
||||
generate_rss = true
|
||||
|
||||
#highlight_theme = "dracula"
|
||||
#highlight_theme = "inspired-github"
|
||||
highlight_theme = "ir-white"
|
||||
#highlight_theme = "material-light"
|
||||
|
||||
extra_syntaxes = [
|
||||
"syntaxes",
|
||||
"syntaxes/Sublime-varlink",
|
||||
"syntaxes/Sublime-console",
|
||||
]
|
||||
|
||||
[extra]
|
||||
# Put all your custom variables here
|
||||
|
||||
author = "Harald Hoyer"
|
||||
|
||||
clean_blog_menu = [
|
||||
{url = "$BASE_URL", name = "Home"},
|
||||
{url = "https://photo-harald.hoyer.xyz/", name = "Photos"},
|
||||
{url = "$BASE_URL/impressum", name = "Impressum"},
|
||||
]
|
||||
|
||||
clean_blog_social = [
|
||||
{url = "https://hoyer.xyz/profile/harald", icon="fab fa-mastodon"},
|
||||
{url = "https://github.com/haraldh", icon="fab fa-github"},
|
||||
{url = "https://keybase.io/haraldhoyer/", icon="fab fa-keybase"},
|
||||
{url = "https://twitter.com/haraldhoyer", icon="fab fa-twitter"},
|
||||
{url = "$BASE_URL/rss.xml", icon="fas fa-rss"}
|
||||
]
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue