2017-10-25 22:09:16 +01:00
|
|
|
{{ define "main" }}
|
|
|
|
<div id="main">
|
|
|
|
<div class="container">
|
2019-01-24 21:47:31 +00:00
|
|
|
{{ partial "content.html" . }}
|
2020-05-11 12:29:12 +01:00
|
|
|
|
2020-09-11 23:59:29 +01:00
|
|
|
<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>
|
2020-05-11 12:29:12 +01:00
|
|
|
|
2020-02-22 15:25:03 +00:00
|
|
|
{{ range .Pages.GroupByDate "2006-01" }}
|
2018-08-19 12:07:19 +01:00
|
|
|
{{ $month := print .Key "-01" }}
|
2020-09-12 00:01:43 +01:00
|
|
|
{{ $display := dateFormat "2006-01" $month }}
|
2021-12-27 10:46:55 +00:00
|
|
|
<h2 class="mt-5 h3" id="{{ $display }}">
|
2020-09-12 00:01:43 +01:00
|
|
|
<a href="#{{ $display }}" class="no-color-change">
|
|
|
|
<time datetime="{{ $month }}" title='{{ dateFormat "January 2006" $month }}'>{{ $display }}</time>
|
2020-07-17 16:49:55 +01:00
|
|
|
</a>
|
2021-12-27 10:46:55 +00:00
|
|
|
</h2>
|
2017-12-31 15:53:19 +00:00
|
|
|
{{ range (sort .Pages "Date" "desc") }}
|
2017-10-27 22:56:44 +01:00
|
|
|
{{ partial "list_item.html" . }}
|
2017-10-25 22:09:16 +01:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|