2020-12-24 08:31:47 +00:00
|
|
|
<section>
|
2022-02-14 12:42:27 +00:00
|
|
|
{{ $prev := now.Format "2006"}}
|
|
|
|
<!--start from the current year-->
|
|
|
|
{{ range first 1 .Pages.ByPublishDate.Reverse }}
|
|
|
|
{{if .Date}}
|
|
|
|
<!--also add the header if there are posts during the current year-->
|
|
|
|
{{if eq $prev (.Date.Format "2006")}}
|
|
|
|
<h2 class="title is-2 top-pad"> {{ $prev }}</h2> {{end}}
|
|
|
|
{{end}}
|
2020-12-26 07:19:01 +00:00
|
|
|
{{end}}
|
|
|
|
|
2022-02-14 12:42:27 +00:00
|
|
|
{{range .Pages.ByPublishDate.Reverse}}
|
2020-12-26 03:31:05 +00:00
|
|
|
{{if .Date}}
|
|
|
|
{{$curr := .Date.Format "2006"}}
|
2022-02-14 12:42:27 +00:00
|
|
|
{{if lt $curr $prev }}
|
|
|
|
<h2 class="title is-2 top-pad">{{ $curr }}</h2>
|
|
|
|
{{end}}
|
2020-12-26 03:31:05 +00:00
|
|
|
<li class="post-item">
|
2022-02-14 12:42:27 +00:00
|
|
|
{{ if .Params.date }}
|
|
|
|
<span>{{ .Date.Format (.Site.Params.dateFormat | default ":date_medium") }}</span> -
|
|
|
|
{{ end }}
|
|
|
|
<span><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></span>
|
2020-12-26 03:31:05 +00:00
|
|
|
</li>
|
2022-02-14 12:42:27 +00:00
|
|
|
{{ $prev = $curr}}
|
|
|
|
{{end}}
|
2020-12-26 03:31:05 +00:00
|
|
|
{{end}}
|
2022-02-14 12:42:27 +00:00
|
|
|
</section>
|