1
Fork 0
theorangeone.net-legacy/layouts/_default/taxonomy.html

20 lines
468 B
HTML
Raw Permalink Normal View History

2017-11-10 22:43:14 +00:00
{{ 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>
2017-11-10 22:43:14 +00:00
{{ if .Content }}
<hr />
{{ end }}
{{ range .Pages.ByDate.Reverse }}
2017-11-10 22:43:14 +00:00
{{ partial "list_item.html" . }}
{{ end }}
</div>
</div>
{{ end }}