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
|
2019-09-03 14:50:23 +00:00
|
|
|
build_search_index = true
|
|
|
|
|
|
|
|
default_language = "en"
|
2018-12-28 11:15:17 +00:00
|
|
|
|
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"},
|
2019-08-10 16:53:16 +00:00
|
|
|
{name = "tags"},
|
|
|
|
{name = "tags", lang = "fr"},
|
2019-01-07 20:03:34 +00:00
|
|
|
]
|
|
|
|
|
2018-12-28 11:15:17 +00:00
|
|
|
languages = [
|
2019-01-02 21:11:34 +00:00
|
|
|
{code = "fr", rss = true},
|
2019-09-03 14:50:23 +00:00
|
|
|
{code = "it", rss = false, search = true },
|
2018-12-28 11:15:17 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[extra]
|
|
|
|
# Put all your custom variables here
|