Skip to content

Commit 23b71de

Browse files
authored
Merge pull request #7 from tbaschak/fix_pagination
fix pagination issue with last page link
2 parents 170f6c6 + 1ac507e commit 23b71de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h1>{{ site.title }}</h1>
3333
{% endif %}
3434
{% endfor %}
3535

36-
<li><a href="/page{{ paginator.total_pages }}/">Last</a></li>
36+
<li><a href="/page/{{ paginator.total_pages }}/">Last</a></li>
3737

3838
{% if paginator.next_page %}
3939
<li><a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">&raquo;</a></li>

0 commit comments

Comments
 (0)