From c4be3181b6f9dc02f6b659506706445c11d9db45 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 26 Jan 2026 16:13:52 +0100 Subject: Add a blog --- config.toml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'config.toml') 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 -- cgit