Pagination Code Examples
Simple Next/Previous Links
{% if pagination.pageCount > 1 %}
<p>
{% if pagination.previousUrl %}
<a href="{{ pagination.previousUrl }}" title="Previous Page">< Previous</a>{% if pagination.nextUrl %} | {% endif %}
{% endif %}
{% if pagination.nextUrl %}
<a href="{{ pagination.nextUrl }}" title="Next Page">Next ></a>
{% endif %}
</p>
{% endif %}
Previous/Next with Page Links
{% if pagination.pageCount > 1 %}
<p>
{% if pagination.previousUrl %}
<a href="{{ pagination.previousUrl }}" title="Previous Page">< Previous</a> |
{% endif %}
{% for page in pagination.pagesInRange %}
{% if page.number != pagination.current %}
<a href="{{ page.url }}" title="Go to Page {{ page.number }}">{{ page.number }}</a>
{% else %}
<strong>{{ page.number }}</strong>
{% endif %}
{% endfor %}
{% if pagination.nextUrl %}
| <a href="{{ pagination.nextUrl }}" title="Next Page">Next ></a>
{% endif %}
</p>
{% endif %}
Next/Previous Range Links with Page Link
{% if pagination.pageCount > 1 %}
{% if pagination.previousRangeUrl %}
<a href="{{ pagination.previousRangeUrl }}"><</a>
{% endif %}
{% for page in pagination.pagesInRange %}
{% if page.number != pagination.current %}
<a href="{{ page.url }}" title="Go to Page {{ page.number }}">{{ page.number }}</a>
{% else %}
<strong>{{ page.number }}</strong>
{% endif %}
{% endfor %}
{% if pagination.nextRangeUrl %}
<a href="{{ pagination.nextRangeUrl }}">></a>
{% endif %}
{% endif %}