15 lines
543 B
Plaintext
15 lines
543 B
Plaintext
{% set numPages = pagination.pages | length %}
|
|
<span class=buttonContainer>
|
|
{% if pagination.pageNumber > 0 %}
|
|
<a href="/{{ paginationRootDir }}/{% if pagination.pageNumber > 1%}page-{{ pagination.pageNumber }}/{% endif %}">
|
|
<button type="button">← Previous</button>
|
|
</a>
|
|
{% endif %}
|
|
|
|
{% if pagination.pageNumber < numPages - 1 %}
|
|
<a href="/{{ paginationRootDir }}/page-{{ pagination.pageNumber + 2 }}/">
|
|
<button type="button">{% if pagination.pageNumber == 0%}Next{% else %}Next{% endif %} →</button>
|
|
</a>
|
|
{% endif %}
|
|
</span>
|