mirror of
https://github.com/yuzu-emu/shared-bulma-theme.git
synced 2024-11-22 21:15:41 +01:00
27 lines
800 B
HTML
Executable File
27 lines
800 B
HTML
Executable File
{{ $paginator := .Paginator }}
|
|
|
|
<!-- If there's more than one page. -->
|
|
{{ if gt $paginator.TotalPages 1 }}
|
|
<div class="section">
|
|
<div class="container">
|
|
<nav class="pagination is-right" role="navigation" aria-label="pagination">
|
|
|
|
{{ if $paginator.HasPrev }}
|
|
<a class="pagination-previous" href="{{ $paginator.Prev.URL }}">Previous Page</a>
|
|
{{ end }}
|
|
|
|
{{ if $paginator.HasNext }}
|
|
<a class="pagination-next" href="{{ $paginator.Next.URL }}">Next Page</a>
|
|
{{ end }}
|
|
|
|
<ul class="pagination-list">
|
|
{{ range $paginator.Pagers }}
|
|
<li>
|
|
<a class="pagination-link" aria-label="Goto page {{ .PageNumber}}" href="{{ .URL }}">{{ .PageNumber }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
{{ end }} |