summaryrefslogtreecommitdiff
path: root/theme/cccevents/templates/pagination.html
blob: f58cdaff6e91da7004ba5f688d98dc46b1c5d96f (plain)
1
2
3
4
5
6
7
8
9
10
11
{% if DEFAULT_PAGINATION %}
<p class="paginator">
    {% if articles_page.has_previous() %}
    <a href="{{ SITEURL }}/{{ articles_previous_page.url }}">&laquo;</a>
    {% endif %}
    Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
    {% if articles_page.has_next() %}
    <a href="{{ SITEURL }}/{{ articles_next_page.url }}">&raquo;</a>
    {% endif %}
</p>
{% endif %}