blob: c34d17f922428267ea933d26b876d6e9e456a792 [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% if DEFAULT_PAGINATION %}
2<p class="paginator">
3{% if articles_page.has_previous() %}
4{% if articles_page.previous_page_number() == 1 %}
5<a href="{{ SITEURL }}/{{ page_name }}.html" class="button_accent">&larr;newer</a>
6{% else %}
7<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html" class="button_accent">&larr;newer</a>
8{% endif %}
9{% endif %}
10{% if articles_page.has_next() %}
11<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html" class="button_accent" style="position: absolute; right: 0;">continue&rarr;</a>
12{% endif %}
13</p>
14{% endif %}