mirror of
https://github.com/yuzu-emu/shared-bulma-theme.git
synced 2024-11-22 16:25:41 +01:00
11 lines
274 B
HTML
11 lines
274 B
HTML
{{ define "main" }} {{ $paginator := .Paginate (where .Data.Pages "Section" "entry") 3 }}
|
|
|
|
<div class="columns">
|
|
{{ range $paginator.Pages }}
|
|
<div class="column">
|
|
{{ .Render "summary" }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ partial "pagination" . }} {{ end }} |