tomfran / typo

A simple Hugo theme
https://tomfran.github.io/
MIT License
247 stars 76 forks source link

feature request: enable RSS #11

Closed 19-10-9 closed 3 months ago

19-10-9 commented 4 months ago

could you please add the enableRSS feature?

tomfran commented 4 months ago

Sure I can look into it, also, if you already know how to do it and want to contribute, feel free to do so 👍🏻

GigaArpit commented 4 months ago

See:

ivan-avalos commented 3 months ago

Hugo builds a RSS feed by default, simply add this to head.html in order to reference it:

{{ with .OutputFormats.Get "rss" -}}
  {{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
{{ end }}

https://gohugo.io/templates/rss/