You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
810 B
25 lines
810 B
10 years ago
|
{% if paginator.total_pages > 1 %}
|
||
|
<div class="pagination">
|
||
|
{% if paginator.previous_page %}
|
||
|
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Prev</a>
|
||
|
{% else %}
|
||
|
<span>« Prev</span>
|
||
|
{% endif %}
|
||
|
{{ site.baseurl }}
|
||
|
{% for page in (1..paginator.total_pages) %}
|
||
|
{% if page == paginator.page %}
|
||
|
<em>{{ page }}</em>
|
||
|
{% elsif page == 1 %}
|
||
|
<a href="{{ '/index.html' }}">{{ page }}</a>
|
||
|
{% else %}
|
||
|
<a href="/{{ site.paginate_path | replace: ':num', page }}"> {{ page }}</a>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
|
||
|
{% if paginator.next_page %}
|
||
|
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next »</a>
|
||
|
{% else %}
|
||
|
<span>Next »</span>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{% endif %}
|