53 lines
1.5 KiB
TOML
53 lines
1.5 KiB
TOML
# The URL the site will be built for
|
|
base_url = "https://matrix.org"
|
|
|
|
title = "Matrix.org"
|
|
description = "The Matrix.org Foundation"
|
|
|
|
# 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
|
|
|
|
default_language = "en"
|
|
|
|
generate_feed = true
|
|
|
|
taxonomies = [
|
|
{ name = "author", feed = false, paginate_by = 10 },
|
|
{ name = "category", feed = true, paginate_by = 10 },
|
|
]
|
|
|
|
[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
|
|
highlight_theme = "visual-studio-dark"
|
|
|
|
[link_checker]
|
|
skip_prefixes = [
|
|
# This page is not a real page. You need to open https://circu.li/fdroid/repo/index-v1.json for a response
|
|
"https://circu.li/fdroid/",
|
|
]
|
|
|
|
skip_anchor_prefixes = [
|
|
# Spec page does not have anchors in the html it seems. (Probably loading using js.) This causes a false positive
|
|
"https://spec.matrix.org/v1.3/changelog/",
|
|
]
|
|
|
|
[extra]
|
|
banner = false
|
|
|
|
# Possible states: "cfp", "awaiting_schedule", "scheduled", "no_tickets", "live", "watch-recordings", "none"
|
|
# None is used when elections instead are used
|
|
conference_state = "none"
|
|
|
|
conference_website = "https://2024.matrix.org"
|
|
conference_dates = "Sep 19-22"
|
|
conference_location = "Berlin, Germany"
|
|
|
|
governence_board_elections = false
|
|
governence_board_elections_page = "/governing-board/elections/2024"
|
|
|