
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.
21 lines
948 B
HTML
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>⟪</a></li>
|
|
<li><a href="{{ SITEURL }}/{{ articles_previous_page.url }}"><span>⟨</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 }}">⟩</a></li>
|
|
<li><a href="{{ SITEURL }}/{{ last_page.url }}">⟫</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|