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.

28 lines
659B

  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. ]
  15. languages = [
  16. {code = "fr", rss = true},
  17. {code = "it", rss = false},
  18. ]
  19. [extra]
  20. # Put all your custom variables here