-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpageNav.html
30 lines (29 loc) · 1.29 KB
/
pageNav.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<nav class="pagination">
<div class="page-links">
{% if paginator.page == 1 %}
<a href="{{ "/" | relative_url }}" class="page-link" title="Index Page">1</a>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="{{ "/" | relative_url }}" class="page-link" title="Previous Page">«</a>
{% else %}
<a href="/page{{ paginator.previous_page }}/" class="page-link" title="Previous Page">«</a>
{% endif %}
{% endif %}
{% if paginator.next_page %}
<!-- {% if paginator.next_page == 1 %}
<a href="{{ "/" | relative_url }}" class="page-link" title="Next Page">\</a>
{% else %}
<a href="/page{{ paginator.next_page }}/" class="page-link" title="Next Page">»</a>
{% endif %} -->
<a href="/page{{ paginator.next_page }}/" class="page-link" title="Next Page">»</a>
{% endif %}
{% if paginator.page == paginator.total_pages %}
{% if paginator.total_pages == 1 %}
<a href="{{ "/" | relative_url }}" class="page-link" title="No Next">\</a>
{% else %}
<a href="/page{{ paginator.page }}" class="page-link" title="Final Page">{{ paginator.page }}</a>
{% endif %}
{% endif %}
</div>
</nav>