This theme is built with W3.CSS and is highly configurable. More than 100 monochromatic color themes and 25 shortcodes. It has support for Cookie consent, image processing, image galleries, page bundles and resources (attachments).
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 -}}
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 -}}