15 lines
382 B
HTML
15 lines
382 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<div>
|
|
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
|
|
{{ .Content }}
|
|
</div>
|
|
<div>
|
|
{{ template "_internal/pagination.html" . }}
|
|
{{ range .Paginator.Pages }}
|
|
{{ .Render "summary" }}
|
|
{{ end }}
|
|
</div>
|
|
</main>
|
|
{{ end }}
|