shared-bulma-theme/layouts/_default/list.html

11 lines
225 B
HTML

{{ define "main" }}
{{ $paginator := .Paginate .Data.Pages }}
{{ range $paginator.Pages }}
<section class="section">
{{ .Render "summary" }}
</section>
{{ end }}
{{ partial "layout/pagination" . }}
{{ end }}