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.

30 lines
714B

  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 = false
  10. generate_rss = true
  11. taxonomies = [
  12. {name = "authors", rss = true},
  13. {name = "auteurs", lang = "fr"},
  14. {name = "tags"},
  15. {name = "tags", lang = "fr"},
  16. ]
  17. languages = [
  18. {code = "fr", rss = true},
  19. {code = "it", rss = false},
  20. ]
  21. [extra]
  22. # Put all your custom variables here