hugo-theme-w3css-basic
hugo-theme-w3css-basic copied to clipboard
Site.RSSLink outdated in head.rss.html
If I try to compile the theme, Hugo shows a warning the Site.RSSLink is outdated. It is referenced once in head.rss.html:
{{- if .Site.RSSLink }}
{{- end -}}According to the Hugo documentation, it needs to be replaced with:
{{ with .OutputFormats.Get "rss" -}}
{{ printf <link rel=%q type=%q href=%q title=%q>
.Rel .MediaType.Type .Permalink site.Title | safeHTML }}
{{- end -}}