From 0fedc342c0e731d08ba7c1fb219c16db95439d71 Mon Sep 17 00:00:00 2001 From: Magnus Madsen Date: Fri, 7 Aug 2026 19:35:19 +0200 Subject: [PATCH] feat: enable site-wide Atom feed Zola only generated per-tag feeds (via the `feed = true` taxonomy settings); there was no feed for the blog as a whole. Enabling `generate_feeds` adds https://blog.flix.dev/atom.xml, the `` auto-discovery tag in every page's head, and the RSS icon in the footer. Co-Authored-By: Claude Opus 5 (1M context) --- config.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.toml b/config.toml index 0613633..dd63826 100644 --- a/config.toml +++ b/config.toml @@ -3,6 +3,8 @@ theme = "tabi" base_url = "https://blog.flix.dev/" compile_sass = true build_search_index = false +generate_feeds = true +feed_filenames = ["atom.xml"] taxonomies = [ {name = "tags", feed = true},