website/themes/gokarna/layouts/partials/list.html
Hoernschen 124e58c339
All checks were successful
build-to-pages / build (push) Successful in 15s
build-to-pages / push (push) Successful in 10s
ADD hugo with pipline
2023-10-31 14:04:49 +01:00

14 lines
303 B
HTML

<div class="container list-posts">
<h1 class="list-title">{{ .Name }}</h1>
{{ range (where .Pages "Params.type" "post" ).GroupByDate "2006" }}
<h2 class="posts-year">{{ .Key }}</h2>
{{- range .Pages -}}
{{- partial "list-posts.html" . -}}
{{ end }}
{{ end }}
</div>