From 3104b7fb1cf6c5ea2b2ca4014e0ea98cfc2d56f6 Mon Sep 17 00:00:00 2001 From: recanman <29310982+recanman@users.noreply.github.com> Date: Fri, 5 Jul 2024 10:24:20 -0700 Subject: [PATCH] fix: exclude "Weeklies" entry in RSS feed --- layouts/_default/index.rss.xml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/layouts/_default/index.rss.xml b/layouts/_default/index.rss.xml index b67fd9c..9238133 100644 --- a/layouts/_default/index.rss.xml +++ b/layouts/_default/index.rss.xml @@ -12,16 +12,18 @@ {{ range where .Site.Pages "Type" "weekly" }} - - {{ .Title }} - {{ .Permalink }} - {{ .Permalink }} - {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" }} + {{ if ne .Title "Weeklies" }} + + {{ .Title }} + {{ .Permalink }} + {{ .Permalink }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" }} - {{ .Content | truncate 350 | html }} - - - + {{ .Content | truncate 350 | html }} + + + + {{ end }} {{ end }} \ No newline at end of file