Download this file

page_list.html    11 lines (10 with data), 352 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<div style="margin: 10px">
{% set paginator = widget.paginator(count, page, limit) %}
<div style="float: right">
{{paginator.pager('$link_previous', symbol_previous='Newer Entries >>')}}
</div>
<div style="float: left">
{{paginator.pager('$link_next', symbol_next='<< Older Entries')}}
</div>
<div style="clear: both"></div>
</div>