pyro/templates/pagination.html
Freyja Wildes 61952116b6 Restarted the project from zero
This theme was started years ago when I was first attempting to build a
blog and personal website using Pelican. In February 2025, I retrieved
it from an server I had. It was then in a very early stage. I reworked
it completely with more modern CSS/HTML (things had changed a *lot*).

This theme aims to be simple, accessible, readable. My own needs and
preferences influence the choicies I make.
2025-02-16 14:11:49 +01:00

21 lines
948 B
HTML

<div class="pagination-wrapper content-subhead">
{% if DEFAULT_PAGINATION %}
{% set first_page = articles_paginator.page(1) %}
{% set last_page = articles_paginator.page(articles_paginator.num_pages) %}
{% if articles_paginator.num_pages > 1 %}
<nav class="pagination">
<ul>
{% if articles_page.has_previous() %}
<li><a href="{{ SITEURL }}/{{ first_page.url }}"><span>&#10218;</a></li>
<li><a href="{{ SITEURL }}/{{ articles_previous_page.url }}"><span>&#10216;</a></li>
{% endif %}
Page <li>{{ articles_page.number }} / {{ articles_paginator.num_pages }}</li>
{% if articles_page.has_next() %}
<li><a href="{{ SITEURL }}/{{ articles_next_page.url }}">&#10217;</a></li>
<li><a href="{{ SITEURL }}/{{ last_page.url }}">&#10219;</a></li>
{% endif %}
</ul>
</nav>
{% endif %}
{% endif %}
</div>