{% with total_results=total_results, total_pages=total_pages, offset=offset, limit=limit, align="u-align--left" %}
{% if offset >= total_results %}
{% set current_page = 1 %}
{% else %}
{% set current_page = ((offset / limit) + 1) | int %}
{% endif %}
{% if total_results > limit %}
{% include "shared/_pagination.html" %}
{% endif %}
{% endwith %}
{% if total_results > 0 %}
Results per page
{% endif %}