1
0
website/config.toml
2020-10-02 17:43:30 +03:00

32 lines
850 B
TOML

# The URL the site will be built for
base_url = "https://yusdacra.gitlab.io"
title = "yusdacra's stuff"
# 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
generate_rss = true
check_external_links = true
taxonomies = [
{name = "categories", rss = true},
{name = "tags", rss = true},
]
theme = "after-dark"
[extra]
# Put all your custom variables here
after_dark_menu = [
{ name = "posts", url = "$BASE_URL" },
{ name = "about me", url = "$BASE_URL/info/about" },
{ name = "projects", url = "$BASE_URL/info/projects" },
]