You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
754B

  1. # The URL the site will be built for
  2. base_url = "https://example.com"
  3. # Whether to automatically compile all Sass files in the sass directory
  4. compile_sass = false
  5. # Whether to do syntax highlighting
  6. # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
  7. highlight_code = false
  8. # Whether to build a search index to be used later on by a JavaScript library
  9. build_search_index = true
  10. default_language = "en"
  11. generate_rss = true
  12. taxonomies = [
  13. {name = "authors", rss = true},
  14. {name = "auteurs", lang = "fr"},
  15. {name = "tags"},
  16. {name = "tags", lang = "fr"},
  17. ]
  18. languages = [
  19. {code = "fr", rss = true},
  20. {code = "it", rss = false, search = true },
  21. ]
  22. [extra]
  23. # Put all your custom variables here