{% sw_extends '@Storefront/storefront/component/pagination.html.twig' %}
{% block component_pagination_nav %}
{% set bannerCount = app.request.get('bannerCount') ?: 0 %}
{% set currentPage = ((criteria.offset + 1 + bannerCount) / criteria.limit )|round(0, 'ceil') %}
{% if bannerCount == 0 %}
{% set totalPages = ((entities.total + bannerCount) / (criteria.limit + app.request.get('criteriaGap')))|round(0, 'ceil') %}
{% else %}
{% set totalPages = ((entities.total + bannerCount) / criteria.limit)|round(0, 'ceil') %}
{% endif %}
{% if totalPages > 1 %}
<nav aria-label="pagination" class="pagination-nav">
{% block component_pagination %}
{{ parent() }}
{% endblock %}
</nav>
{% endif %}
{% endblock %}