forked from hacc/haccfiles
stuebinm
41d82ae436
we decided to: - get rid of unused packages - simpify the directory layout since we only have one host anyways - move our docs (such as they are) in-tree
35 lines
742 B
TOML
35 lines
742 B
TOML
# Zola's configuration file,
|
|
#
|
|
# see https://www.getzola.org/documentation/getting-started/configuration/
|
|
# for available keys.
|
|
|
|
# The URL the site will be built for
|
|
base_url = "https://docs.hacc.space"
|
|
|
|
compile_sass = true
|
|
default_language = "en"
|
|
|
|
# might be useful — this isn't a blog, obviously, but updates for new entries
|
|
# could still be nice, I guess
|
|
generate_feed = true
|
|
feed_filename = "atom.xml"
|
|
|
|
build_search_index = true
|
|
|
|
taxonomies = [
|
|
{ name = "categories", feed = false},
|
|
]
|
|
|
|
[markdown]
|
|
highlight_code = true
|
|
|
|
[extra] # user-defined keys
|
|
|
|
# site title text
|
|
main_title = "haccfiles documentation"
|
|
|
|
# navbar entries
|
|
main_menu = [
|
|
{url = "$BASE_URL", name = "Home"},
|
|
{url = "$BASE_URL/categories", name = "Categories"}
|
|
]
|