Skip to content

Commit 994afac

Browse files
committed
Fixed pagination
1 parent 62c3537 commit 994afac

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.themes/nshint/source/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
{% endfor %}
1313
<div class="pagination">
1414
{% if paginator.next_page %}
15-
<a class="prev" href="{{paginator.next_page}}">&larr; Older</a>
15+
<a class="prev" href="{{paginator.next_page_path}}">&larr; Older</a>
1616
{% endif %}
1717
<a href="/blog/archives">Blog Archives</a>
1818
{% if paginator.previous_page %}
19-
<a class="next" href="{{paginator.previous_page}}">Newer &rarr;</a>
19+
<a class="next" href="{{paginator.previous_page_path}}">Newer &rarr;</a>
2020
{% endif %}
2121
</div>
2222
</div>

source/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
{% endfor %}
1313
<div class="pagination">
1414
{% if paginator.next_page %}
15-
<a class="prev" href="{{paginator.next_page}}">&larr; Older</a>
15+
<a class="prev" href="{{paginator.next_page_path}}">&larr; Older</a>
1616
{% endif %}
1717
<a href="/blog/archives">Blog Archives</a>
1818
{% if paginator.previous_page %}
19-
<a class="next" href="{{paginator.previous_page}}">Newer &rarr;</a>
19+
<a class="next" href="{{paginator.previous_page_path}}">Newer &rarr;</a>
2020
{% endif %}
2121
</div>
2222
</div>

0 commit comments

Comments
 (0)