blog/themes/chosto/layouts/index.html

15 lines
373 B
HTML
Raw Normal View History

2021-05-11 10:01:24 +02:00
{{ define "main" }}
<main>
<div>
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
2021-05-18 16:22:28 +02:00
{{ .Content }}
2021-05-11 10:01:24 +02:00
</div>
<div>
2021-05-18 15:29:05 +02:00
{{ range .Paginator.Pages }}
2021-05-18 16:22:28 +02:00
{{ .Render "summary" }}
2021-05-11 10:01:24 +02:00
{{ end }}
2021-05-21 14:53:35 +02:00
{{- partial "pagination.html" . -}}
2021-05-11 10:01:24 +02:00
</div>
</main>
{{ end }}