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

11 lines
225 B
HTML
Raw Normal View History

2018-01-04 21:15:06 +01:00
{{ define "main" }}
{{ $paginator := .Paginate .Data.Pages }}
{{ range $paginator.Pages }}
<section class="section">
{{ .Render "summary" }}
</section>
2018-01-04 21:15:06 +01:00
{{ end }}
{{ partial "layout/pagination" . }}
2018-01-04 21:15:06 +01:00
{{ end }}