config.toml 893 B

12345678910111213141516171819202122232425262728293031323334
  1. # The URL the site will be built for
  2. base_url = "https://byron.games"
  3. title = "A Blog or Some Shit"
  4. # Whether to automatically compile all Sass files in the sass directory
  5. compile_sass = true
  6. # Whether to build a search index to be used later on by a JavaScript library
  7. build_search_index = true
  8. theme = "hacker"
  9. taxonomies = [
  10. { name = "tags" },
  11. ]
  12. [markdown]
  13. # Whether to do syntax highlighting
  14. # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
  15. highlight_code = true
  16. [extra]
  17. # Put all your custom variables here
  18. logo = "images/logo.png"
  19. menu = [
  20. { full_url ="https://vtt.byron.games", name = "Foundry" },
  21. { full_url ="https://km.byron.games", name = "King Maker Wiki" },
  22. { url = "/about", name = "About" },
  23. { url = "/tags", name = "Tags" }
  24. ]
  25. language_code = "en-US"
  26. timezone = "America/Detroit"
  27. social_links = []