mirror of
https://github.com/fruworg/themu.git
synced 2024-11-16 15:07:17 +03:00
16 lines
548 B
HTML
16 lines
548 B
HTML
{{ $pag := $.Paginator }}
|
|
{{ if gt $pag.TotalPages 1 }}
|
|
<ul class="pagination">
|
|
<span class="page-item page-prev">
|
|
{{ if $pag.HasPrev }}
|
|
<a {{ if $pag.HasPrev }}href="{{ $pag.Prev.URL }}"{{ end }} class="page-link" aria-label="Previous"><span aria-hidden="true">← Prev</span></a>
|
|
{{ end }}
|
|
</span>
|
|
<span class="page-item page-next">
|
|
{{ if $pag.HasNext }}
|
|
<a {{ if $pag.HasNext }}href="{{ $pag.Next.URL }}"{{ end }} class="page-link" aria-label="Next"><span aria-hidden="true">Next →</span></a>
|
|
{{ end }}
|
|
</span>
|
|
</ul>
|
|
{{ end }}
|