diff options
author | Nicolas Dato <nicolas.dato@gmail.com> | 2024-11-26 11:50:27 -0300 |
---|---|---|
committer | Nicolas Dato <nicolas.dato@gmail.com> | 2024-11-26 12:16:42 -0300 |
commit | 8354b8f77fdfd907f07574b63e910aba09232ade (patch) | |
tree | 14ea9df29a441c097f46b20b63f6c952e4e6ccb9 /zola/config.toml | |
parent | 40b19b34385a1c6dcefcfaa3e9fa2087ab16ff07 (diff) | |
download | ndato.com-8354b8f77fdfd907f07574b63e910aba09232ade.tar.gz ndato.com-8354b8f77fdfd907f07574b63e910aba09232ade.tar.bz2 |
first article, safer pointers
Diffstat (limited to 'zola/config.toml')
-rw-r--r-- | zola/config.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/zola/config.toml b/zola/config.toml index 184d40e..8c39678 100644 --- a/zola/config.toml +++ b/zola/config.toml @@ -11,10 +11,16 @@ build_search_index = false default_language = "en" +taxonomies = [ + { name = "Categories", feed = true}, + { name = "Tags", feed = true}, +] + [markdown] # Whether to do syntax highlighting # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola highlight_code = true +highlight_theme = "solarized-dark" [extra] # Put all your custom variables here |