Include tags in RSS feed

This commit is contained in:
Marcus Noble 2020-09-13 20:34:27 +01:00
parent 5a9b5764cc
commit 5067cd1fc3
1 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,11 @@
<guid>{{ .Permalink }}</guid>
<description>{{ .Summary | html }}</description>
<content type="html">{{ printf `<![CDATA[%s]]>` .Content | safeHTML }}</content>
<tags>
{{ range .Param "tags" -}}
<tag>{{ . }}</tag>
{{ end -}}
</tags>
</item>
{{ end }}
</channel>