aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-striped-html5up/templates/pagination.html
blob: 37e970d9308fba0eba57cf9dae16706ecee1d4ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% if DEFAULT_PAGINATION %}
<p class="paginator">
    {% if articles_page.has_previous() %}
        <a class="button previous" href="{{ SITEURL }}/{{ articles_previous_page.url }}">Newer Entries</a>
    {% endif %}
    Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
    {% if articles_page.has_next() %}
        <a class="button next"  href="{{ SITEURL }}/{{ articles_next_page.url }}">Older Entries</a>
    {% endif %}
</p>
{% endif %}