Warn if no title, description in RSS

master
Will Faught 2 years ago
parent 7eeabd5e04
commit 45eaf4421e

@ -75,6 +75,9 @@
{{ with .Title }} {{ with .Title }}
<title>{{ . | markdownify | plainify | htmlUnescape | safeHTML }}</title> <title>{{ . | markdownify | plainify | htmlUnescape | safeHTML }}</title>
{{ end }} {{ end }}
{{ if and (not .Description) (not .Title) }}
{{ warnf "layouts/_default/rss.xml: Page %s does not have a title or description" .RelPermalink }}
{{ end }}
</item> </item>
{{ end }} {{ end }}
</channel> </channel>

Loading…
Cancel
Save