hugo-theme-introduction/layouts/partials/blog/archive.html

20 lines
639 B
HTML
Raw Normal View History

2020-12-24 08:31:47 +00:00
<section>
2020-12-26 03:31:05 +00:00
{{ $prev := now.Format "2006"}} <!--start from the current year-->
<h2 class="title is-2 top-pad">{{ $prev }}</h2>
{{range .Pages.ByPublishDate.Reverse}}
{{if .Date}}
{{$curr := .Date.Format "2006"}}
{{if lt $curr $prev }}
<h2 class="title is-2 top-pad">{{ $curr }}</h2>
2020-12-24 08:31:47 +00:00
{{end}}
2020-12-26 03:31:05 +00:00
<li class="post-item">
{{ if .Params.date }}
<span>{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}</span> -
{{ end }}
<span><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></span>
</li>
{{ $prev = $curr}}
{{end}}
{{end}}
2020-12-24 08:31:47 +00:00
</section>