1
0
Fork 0
This repository has been archived on 2024-12-30. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
pelican-alchemy/alchemy/templates/include/pagination.html

12 lines
424 B
HTML
Raw Normal View History

2013-11-24 20:53:19 +03:00
{% if DEFAULT_PAGINATION %}
<hr>
<ul class="pagination">
{% if articles_page.has_previous() %}
<li><a href="{{ SITEURL }}/{{ articles_previous_page.url }}">&laquo;</a></li>
{% endif %}
<li><span>{{ articles_page.number }} of {{ articles_paginator.num_pages }}</span></li>
{% if articles_page.has_next() %}
<li><a href="{{ SITEURL }}/{{ articles_next_page.url }}">&raquo;</a></li>
{% endif %}
</ul>
2013-11-24 20:53:19 +03:00
{% endif %}