1
Fork 0
theorangeone.net-legacy/layouts/_default/taxonomy.html
Jake Howard 68ef4341a0
Add RSS feed links to tags
I generate them, people might as well know they're there
2022-01-03 14:42:34 +00:00

19 lines
468 B
HTML

{{ define "main" }}
<div id="main">
<div class="container">
{{ 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 }}
<hr />
{{ end }}
{{ range .Pages.ByDate.Reverse }}
{{ partial "list_item.html" . }}
{{ end }}
</div>
</div>
{{ end }}