35 lines
764 B
TOML
35 lines
764 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://hacc.4future.dev/hacc/infra/docs-zola"
|
|
|
|
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"}
|
|
]
|