Files
gokarna/layouts/partials/list.html
Yash Mehrotra e8b9e86fc5 Rearchitect theme directory (#59)
* Rearchitect theme directory

* Fix symlink
2021-08-14 02:41:02 +05:30

15 lines
304 B
HTML

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