fix: exclude "Weeklies" entry in RSS feed

This commit is contained in:
recanman 2024-07-05 10:24:20 -07:00
parent ba46190603
commit 3104b7fb1c

View file

@ -12,6 +12,7 @@
<atom:link href="{{ .Permalink }}" rel="self" type="application/rss+xml" />
{{ range where .Site.Pages "Type" "weekly" }}
{{ if ne .Title "Weeklies" }}
<item>
<title>{{ .Title }}</title>
<link>{{ .Permalink }}</link>
@ -23,5 +24,6 @@
<media:content medium="image" url="{{ .Permalink }}cover.png" xmlns:media="http://search.yahoo.com/mrss/" />
</item>
{{ end }}
{{ end }}
</channel>
</rss>