{% sw_extends '@Storefront/storefront/component/pagination.html.twig' %}
{% block component_pagination %}
<div class="pagination nrbn-pagination">
<div class="nrbn-pagination-prev{% if currentPage == 1 %} disabled{% endif %}">
<input type="radio"
{% if currentPage == 1 %}disabled="disabled"{% endif %}
name="p"
id="p-prev"
value="{{ currentPage - 1 }}"
class="d-none"
title="pagination">
<label class="nrbn-pagination-label" for="p-prev">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" height="24" width="24">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 19.5L8.25 12l7.5-7.5" />
</svg>
</label>
</div>
<div class="nrbn-pagination-info">
Seite {{ currentPage }} von {{ totalPages }}
</div>
<div class="nrbn-pagination-next{% if currentPage == totalPages %} disabled{% endif %}">
<input type="radio"
{% if currentPage == totalPages %}disabled="disabled"{% endif %}
name="p"
id="p-next"
value="{{ currentPage + 1 }}"
class="d-none"
title="pagination">
<label class="nrbn-pagination-label" for="p-next">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" height="24" width="24">
<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 4.5l7.5 7.5-7.5 7.5" />
</svg>
</label>
</div>
</div>
{% endblock %}