blog/themes/pelican-striped-html5up/templates/pagination.html
Marc Beninca 3b5262ab5e themes
2021-11-08 23:46:35 +01:00

11 lines
459 B
HTML

{% 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 %}