diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-01-26 16:13:52 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-01-27 16:20:37 +0100 |
| commit | c4be3181b6f9dc02f6b659506706445c11d9db45 (patch) | |
| tree | a6e386e7f0e92a008bbdf80cfbb55bc75dcbe4d6 /config.toml | |
| parent | 5737068b4153ba6173206bdb05e504a41ee87d3b (diff) | |
Add a blog
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 |