From 17c300ebd76f9f849fcde61cbdf2049a0a52d75b1139d7ad8d8666a6a0b00f17 Mon Sep 17 00:00:00 2001 From: Nicholas Johnson <> Date: Fri, 18 Sep 2026 00:00:00 +0000 Subject: Limit home feeds to journal entries The homepage lists only pages in the "entry" section, but its feeds ranged over every regular page. Standalone pages such as an about page were therefore published to subscribers while never appearing on the homepage itself. Apply the same section filter the homepage templates use, so the feed and the page it describes agree on what an entry is. Co-Authored-By: Claude Opus 5 --- layouts/home.gemini_atom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layouts/home.gemini_atom.xml') diff --git a/layouts/home.gemini_atom.xml b/layouts/home.gemini_atom.xml index 491b9c2..5bd3a52 100644 --- a/layouts/home.gemini_atom.xml +++ b/layouts/home.gemini_atom.xml @@ -21,7 +21,7 @@ {{- end }} {{- end -}} -{{- $pages := .Site.RegularPages }} +{{- $pages := where .Site.RegularPages "Section" "entry" }} {{- $limit := .Site.Config.Services.RSS.Limit }} {{- if ge $limit 1 }} {{- $pages = first $limit $pages }} -- cgit v1.2.3