1
Fork 0
theorangeone.net-legacy/layouts/posts/list.html

28 lines
892 B
HTML

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