Website/theme/templates/pagination.html

20 lines
631 B
HTML

{% if DEFAULT_PAGINATION %}
{% if pages %}
<div class="paginator">
{% if articles_page.has_previous() %}
<a href="{{ SITEURL }}/{{ articles_previous_page.url }}"></a>
{% endif %}
{% for p in range(1, articles_paginator.num_pages + 1) %}
{% if articles_page.number == p %}
<span>{{ p }}</span>
{% else %}
<a href="{{ SITEURL }}/{{ articles_paginator.page(p).url }}">{{ p }}</a>
{% endif %}
{% endfor %}
{% if articles_page.has_next() %}
<a href="{{ SITEURL }}/{{ articles_next_page.url }}"></a>
{% endif %}
</div>
{% endif %}
{% endif %}