forked from varia/varia.website
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
463 B
12 lines
463 B
{% if DEFAULT_PAGINATION %}
|
|
<p class="paginator">
|
|
{% if articles_page.has_previous() %}
|
|
|
|
<a href="{% if DEFAULT_LANG == 'en' %}/en{% endif %}/{{ articles_previous_page.url }}">«</a>
|
|
{% endif %}
|
|
Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
|
|
{% if articles_page.has_next() %}
|
|
<a href="{% if DEFAULT_LANG == 'en' %}/en{% endif %}/{{ articles_next_page.url }}">»</a>
|
|
{% endif %}
|
|
</p>
|
|
{% endif %}
|
|
|