You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
624 B
15 lines
624 B
{{ $pag := $.Paginator }} |
|
|
|
<nav class="gblog-paging flex flex-even align-center" role="navigation"> |
|
<div class="gblog-paging__item gblog-paging__item--prev"> |
|
{{ if $pag.HasPrev }} |
|
<a class="flex-inline align-center fake-link no-wrap" href="{{ $pag.Prev.URL }}">PREV</a> |
|
{{ end }} |
|
</div> |
|
<div class="gblog-paging__state">Page {{ $pag.PageNumber }} of {{ $pag.TotalPages }}</div> |
|
<div class="gblog-paging__item gblog-paging__item--next"> |
|
{{ if $pag.HasNext }} |
|
<a class="flex-inline align-center fake-link no-wrap" href="{{ $pag.Next.URL }}">NEXT</a> |
|
{{ end }} |
|
</div> |
|
</nav>
|
|
|