website-theme/layouts/blog/list.html

38 lines
1.1 KiB
HTML
Raw Normal View History

{{ define "main"}}
{{ partial "header.html" . }}
<main>
2022-05-08 18:02:35 -04:00
{{ partial "search.html" . }}
2022-05-08 18:06:32 -04:00
{{ partial "tags/all.html" . }}
<br/>
{{ $posts := where site.RegularPages "Type" "blog" }}
{{ $postCount := len $posts }}
{{ range last 1 $posts }}
{{ $tags := .Site.Taxonomies.tags }}
2022-11-22 23:25:30 -05:00
<div class='bloglist-teaser'>
Hello! This page contains <strong>{{ $postCount | lang.NumFmt 0 }} posts</strong>
written in the past <strong>{{ div (sub now.Unix .Date.Unix) 31536000 }} years</strong>
2022-11-22 23:25:30 -05:00
spanning
{{ len $tags }} topics within the dropdown above.
</div>
{{ end }}
<!-- contents -->
2022-11-22 23:25:30 -05:00
<div class="bloglist">
{{ $listPageDateFormat := .Site.Params.listPageDateFormat | default "January, 2006"}}
{{ range $index, $value := .Pages.GroupByDate $listPageDateFormat }}
2022-05-08 18:02:35 -04:00
{{ if (ne $index 0) }}
<hr class="separator">
{{ end }}
2022-11-22 23:25:30 -05:00
<p class="bloglist-date">{{ .Key }}</p>
2022-05-08 18:02:35 -04:00
{{ range .Pages }}
<p><a href="{{ .Permalink }}">{{ .Title }}</a></p>
{{ end }}
{{ end }}
</div>
</main>
{{ partial "footer.html" . }}
{{ end }}