zola/test_site_i18n/config.toml

28 lines
659 B
TOML
Raw Normal View History

2018-12-28 11:15:17 +00:00
# The URL the site will be built for
base_url = "https://example.com"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = false
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = false
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
2019-01-02 21:11:34 +00:00
generate_rss = true
2019-01-07 20:03:34 +00:00
taxonomies = [
{name = "authors", rss = true},
{name = "auteurs", lang = "fr"},
]
2018-12-28 11:15:17 +00:00
languages = [
2019-01-02 21:11:34 +00:00
{code = "fr", rss = true},
{code = "it", rss = false},
2018-12-28 11:15:17 +00:00
]
[extra]
# Put all your custom variables here