1
Fork 0

Add RSS feed links to tags

I generate them, people might as well know they're there
This commit is contained in:
Jake Howard 2022-01-03 14:42:34 +00:00
parent 424d30998d
commit 68ef4341a0
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -2,9 +2,15 @@
<div id="main"> <div id="main">
<div class="container"> <div class="container">
{{ partial "content.html" . }} {{ partial "content.html" . }}
<div class="text-right mb-2">
<a href="{{ (.OutputFormats.Get "rss").Permalink }}" title="Subscribe to {{ .Title }}"><i class="fas fa-rss ml-3"></i></a>
</div>
{{ if .Content }} {{ if .Content }}
<hr /> <hr />
{{ end }} {{ end }}
{{ range .Pages.ByDate.Reverse }} {{ range .Pages.ByDate.Reverse }}
{{ partial "list_item.html" . }} {{ partial "list_item.html" . }}
{{ end }} {{ end }}