kaapiandcode / hugo-goa

Simple Minimalistic Theme for Hugo
https://kaapiandcode.github.io/hugo-goa-demo/
MIT License
264 stars 128 forks source link

Warning regarding deprecated Page.RSSLink #77

Closed cezarmathe closed 2 years ago

cezarmathe commented 4 years ago
WARN 2019/12/17 21:37:54 Page.RSSLink is deprecated and will be removed in a future release. Use the Output Format's link, e.g. something like:
    {{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}
erolrecep commented 2 years ago

This solved the warning. On layouts/partials/social.html Lines : 113 - 115

Changed to -->

{{ with .OutputFormats.Get "RSS"}} <a href="{{ .RelPermalink }}" aria-label="RSS" target="_blank"><i class="fas fa-rss" aria-hidden="true"></i></a> {{ end }}