pagination markup
Closed this issue · 1 comments
agragregra commented
Hello.
How to make a layout for pagination on the home page and category pages? Next - previous page link?
midnightSuyama commented
for example
{% if paginator.next_page %}
<a href="{{paginator.next_page}}">Next</a>
{% endif %}
{% if paginator.previous_page %}
<a href="{{paginator.previous_page}}">Previous</a>
{% endif %}
Thanks:)