blob: 97b3f60b373c64880eb25b715d165669177fcb33 [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% if DEFAULT_PAGINATION %}
Giulio Fidenteebb4c7a2013-10-20 01:45:10 +02002<div id="paginator">
pR0Ps981a8392013-12-11 13:11:32 -05003<span id="left">
pR0Ps721949b2013-12-11 13:09:22 -05004{% if articles_page.has_previous() %}
5{% set num = articles_page.previous_page_number() %}
pR0Ps065362a2013-12-19 21:18:03 -05006<a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html"><i class="fa fa-arrow-circle-left"></i> Prev</a>
Giulio Fidented5f389d2013-03-22 23:36:06 +01007{% endif %}
pR0Ps981a8392013-12-11 13:11:32 -05008</span>
Giulio Fidented5f389d2013-03-22 23:36:06 +01009
pR0Ps981a8392013-12-11 13:11:32 -050010{% for num in range( 1, 1 + articles_paginator.num_pages ) %}
11 <a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html">{{'[' + num|string + ']' if num == articles_page.number else ' ' + num|string + ' ' }}</a>
12{% endfor %}
13
14<span id="right">
pR0Ps721949b2013-12-11 13:09:22 -050015{% if articles_page.has_next() %}
pR0Ps065362a2013-12-19 21:18:03 -050016<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">Next <i class="fa fa-arrow-circle-right"></i></a>
Giulio Fidente44ccac72013-03-21 18:51:03 +010017{% endif %}
pR0Ps981a8392013-12-11 13:11:32 -050018</span>
Giulio Fidenteebb4c7a2013-10-20 01:45:10 +020019</div>
Giulio Fidente44ccac72013-03-21 18:51:03 +010020{% endif %}