Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pagination test
Browse files Browse the repository at this point in the history
jacobpalm committed Jun 23, 2024
1 parent d42b87e commit cfe7d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blog/index.html
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ <h2>{{ post.title }}</h2>

{% for page in (1..paginator.total_pages) %}
{% if page > minpage %}
{% if page < maxpage}
{% if page < maxpage %}
{% if page == paginator.page %}
<a class="w3-bar-item w3-button w3-white w3-hover-white">{{ page }}</a>
{% elsif page == 1 %}

0 comments on commit cfe7d2b

Please sign in to comment.