midnightSuyama/jekyll-paginate-category

pagination markup

Closed this issue · 1 comments

Hello.
How to make a layout for pagination on the home page and category pages? Next - previous page link?

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:)