blob: 6f20b0f5ce3fb16d37f604ae54d31868cf9a8dfa [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% if DEFAULT_PAGINATION %}
Giulio Fidente91c1d452013-03-22 15:15:17 +01002<p id="paginator">
Giulio Fidented5f389d2013-03-22 23:36:06 +01003{% if articles_page.has_next() %}
Giulio Fidente62d1ae82013-03-27 01:18:57 +01004<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html" class="button_accent">&larr; Older Posts</a>
Giulio Fidented5f389d2013-03-22 23:36:06 +01005{% endif %}
6
Giulio Fidente44ccac72013-03-21 18:51:03 +01007{% if articles_page.has_previous() %}
8{% if articles_page.previous_page_number() == 1 %}
Giulio Fidente62d1ae82013-03-27 01:18:57 +01009<a href="{{ SITEURL }}/{{ page_name }}.html" class="button_accent">Newer Posts &rarr;</a>
Giulio Fidente44ccac72013-03-21 18:51:03 +010010{% else %}
Giulio Fidente62d1ae82013-03-27 01:18:57 +010011<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html" class="button_accent">Newer Posts &rarr;</a>
Giulio Fidente44ccac72013-03-21 18:51:03 +010012{% endif %}
13{% endif %}
Giulio Fidente44ccac72013-03-21 18:51:03 +010014</p>
15{% endif %}