mirror of
https://github.com/yuzu-emu/shared-bulma-theme.git
synced 2024-11-22 16:05:41 +01:00
15 lines
377 B
HTML
15 lines
377 B
HTML
{{ define "main" }} {{ $paginator := .Paginate .Data.Pages }}
|
|
|
|
<section class="section">
|
|
<h1 class="title">{{ .Title }}</h1>
|
|
|
|
<div class="columns is-multiline">
|
|
{{ range $paginator.Pages }}
|
|
<div class="column is-6">
|
|
{{ .Render "summary" }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
|
|
{{ partial "layout/pagination" . }} {{ end }} |