mirror of
https://github.com/peter-tanner/code.git
synced 2024-11-30 10:50:16 +08:00
27 lines
952 B
HTML
27 lines
952 B
HTML
<!-- pagination -->
|
|
{% if paginator.total_pages > 1 %}
|
|
<div class="pagination">
|
|
{% if paginator.previous_page %}
|
|
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}"><i class="fas fa-chevron-left"></i></a>
|
|
{% else %}
|
|
<span><i class="fas fa-chevron-left"></i></span>
|
|
{% endif %}
|
|
|
|
{% for page in (1..paginator.total_pages) %}
|
|
{% if page == paginator.page %}
|
|
<span class="webjeda">{{ page }}</span>
|
|
{% elsif page == 1 %}
|
|
<a href="/">{{ page }}</a>
|
|
{% else %}
|
|
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% if paginator.next_page %}
|
|
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}"><i class="fas fa-chevron-right"></i></a>
|
|
{% else %}
|
|
<span><i class="fas fa-chevron-right"></i></span>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|