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-19 18:08:47 +02:00
|
|
|
{{ template "_internal/pagination.html" . }}
|
2021-05-11 10:01:24 +02:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{{ end }}
|