mirror of
https://github.com/arsenetar/pelican-red.git
synced 2024-11-22 19:29:02 +00:00
24 lines
1.3 KiB
HTML
24 lines
1.3 KiB
HTML
|
<div class='pagination-centered'><ul class="pagination">
|
||
|
{% if articles_page.has_previous() %}
|
||
|
{% if articles_page.previous_page_number() == 1 %}
|
||
|
<li class="arrow"><a href="{{ SITEURL }}/{{ page_name }}.html" title="Previous page">«</a></li>
|
||
|
{% else %}
|
||
|
<li class="arrow"><a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html" title="Previous page">«</a></li>
|
||
|
{% endif %}
|
||
|
{% else %}
|
||
|
<li class="arrow unavailable"><a title="Previous page">«</a></li>
|
||
|
{% endif %}
|
||
|
{% for num in range (1, articles_paginator.num_pages + 1) %}
|
||
|
{% if num == articles_page.number %}
|
||
|
<li class="current"><a title="Current page">{{ num }}</a></li>
|
||
|
{% else %}
|
||
|
<li><a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 }}.html">{{ num }}</a></li>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
{% if articles_page.has_next() %}
|
||
|
<li class="arrow"><a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html" title="Next page">»</a></li>
|
||
|
{% else %}
|
||
|
<li class="arrow unavailable"><a title="Next page">»</a></li>
|
||
|
{% endif %}
|
||
|
</ul></div>
|