blog/themes/chosto/layouts/_default/list.html

16 lines
382 B
HTML
Raw Normal View History

{{ define "main" }}
<main>
<article>
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
{{ .Content }}
</article>
<ul>
2021-05-22 00:16:10 +02:00
{{ range .Paginator.Pages }}
2021-05-21 14:53:35 +02:00
{{- partial "listitem.html" . -}}
{{- partial "postinfo.html" . -}}
{{ end }}
</ul>
2021-05-21 14:53:35 +02:00
{{- partial "pagination.html" . -}}
</main>
{{ end }}