1
Fork 0
theorangeone.net-legacy/layouts/posts/list.html
2020-07-17 16:49:55 +01:00

23 lines
733 B
HTML

{{ define "main" }}
<div id="main">
<div class="container">
{{ partial "content.html" . }}
{{ with .OutputFormats.Get "rss" }}
<p class="float-right"><a href="{{ .Permalink }}"><i class="fas fa-rss"></i> Subscribe</a></p>
{{ end }}
{{ range .Pages.GroupByDate "2006-01" }}
{{ $month := print .Key "-01" }}
<h3 class="mt-5" id="{{ $month }}">
<a href="#{{ $month }}" class="no-color-change">
<time datetime="{{ $month }}" title='{{ dateFormat "January 2006" $month }}'>{{ dateFormat "2006-01" $month }}</time>
</a>
</h3>
{{ range (sort .Pages "Date" "desc") }}
{{ partial "list_item.html" . }}
{{ end }}
{{ end }}
</div>
</div>
{{ end }}