keimena/layouts/partials/list.html

21 lines
418 B
HTML
Raw Normal View History

2024-05-27 21:13:51 +00:00
<div class="container list-posts">
<h1 class="list-title">{{ lower .Name }}</h1>
{{ range (where .Pages "Params.type" "post" ).GroupByDate "2006" }}
<!-- Display text here
Date
<h2 class="posts-year">{{ .Key }}</h2>
Other text
<h2 class="posts-year"></h2>
-->
{{- range .Pages -}}
{{- partial "list-posts.html" . -}}
{{ end }}
{{ end }}
</div>