don't write empty categories to rss

This commit is contained in:
John Bowdre 2023-12-30 17:08:31 -06:00
parent cb8e66fabe
commit 2642a29e26

View file

@ -36,7 +36,7 @@
<link>{{ .Permalink }}</link>
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
{{ with .Site.Params.Author.name }}<dc:creator>{{.}}</dc:creator>{{ end }}
<category>{{ .Params.series | lower }}</category>
{{ with .Params.series }}<category>{{ . | lower }}</category>{{ end }}
{{ range (.GetTerms "tags") }}
<category>{{ .LinkTitle }}</category>{{ end }}
<guid>{{ .Permalink }}</guid>