diff options
Diffstat (limited to 'config.toml')
| -rw-r--r-- | config.toml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/config.toml b/config.toml index 1d65c5a..94e693c 100644 --- a/config.toml +++ b/config.toml @@ -1,16 +1,21 @@ # The URL the site will be built for base_url = "https://www.holistic.services" +generate_feeds = true + +author = "Rubén Beltrán del Río" # Whether to automatically compile all Sass files in the sass directory compile_sass = false # Whether to build a search index to be used later on by a JavaScript library build_search_index = true +exclude_paginated_pages_in_sitemap = "all" -[markdown] -# Whether to do syntax highlighting -# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola -highlight_code = false +# Taxonomies for blog posts. +taxonomies = [ + {name = "categories", rss = true, paginate_by=10}, + {name = "tags", rss = true, paginate_by=10}, +] [extra] # Put all your custom variables here |