mirror of
https://github.com/minetestblog/minetestblog.github.io.git
synced 2025-07-14 10:18:55 +02:00
29 lines
751 B
HTML
29 lines
751 B
HTML
|
|
<nav class="pagination" role="navigation">
|
|
<hr/>
|
|
<ul>
|
|
<li class="pagination-item-prev" >
|
|
{% if paginator.previous_page %}
|
|
{% if paginator.page == 2 %}
|
|
<a rel="prev" href="{{ site.baseurl }}/">« Previous</a>
|
|
{% else %}
|
|
<a rel="prev" href="{{ site.baseurl }}/page-{{paginator.previous_page}}/">« Previous</a>
|
|
{% endif %}
|
|
{% else %}
|
|
<span>« Previous</span>
|
|
{% endif %}
|
|
</li>
|
|
|
|
|
|
<li class="pagination-item-next" >
|
|
{% if paginator.next_page %}
|
|
<a rel="next" href="{{ site.baseurl }}/page-{{paginator.next_page}}/">Next »</a>
|
|
{% else %}
|
|
<span>Next »</span>
|
|
{% endif %}
|
|
</li>
|
|
|
|
</ul>
|
|
<hr/>
|
|
</nav>
|