Only shown pagination when not empty.
Currenty the pagination bar is always shown, even when no prev/next buttons are active. This only shows the bar when actual navigation is possible.
This commit is contained in:
parent
226d90ad5a
commit
54cfbe039b
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{{if $pager && ($pager.prev || $pager.next)}}
|
||||
<div class="pager">
|
||||
{{if $pager}}
|
||||
{{if $pager.prev}}<span class="pager_prev {{$pager.prev.class}}"><a href="{{$pager.prev.url}}">{{$pager.prev.text}}</a></span>{{/if}}
|
||||
|
||||
{{if $pager.first}}<span class="pager_first {{$pager.first.class}}"><a href="{{$pager.first.url}}">{{$pager.first.text}}</a></span>{{/if}}
|
||||
|
@ -9,5 +9,5 @@
|
|||
{{if $pager.last}} <span class="pager_last {{$pager.last.class}}"><a href="{{$pager.last.url}}">{{$pager.last.text}}</a></span>{{/if}}
|
||||
|
||||
{{if $pager.next}}<span class="pager_next {{$pager.next.class}}"><a href="{{$pager.next.url}}">{{$pager.next.text}}</a></span>{{/if}}
|
||||
{{/if}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
|
Loading…
Reference in a new issue