templates/front/pagination/products.html.twig line 1

Open in your IDE?
  1. {% if pageCount > 1 %}
  2. <div class="wancho" id="contentpaginator">
  3.     <div class="faw__pagination">
  4.         {% if previous is defined %}
  5.         <a class="button-prev" href="#" paginator data-href="{{ path(route, query|merge({(pageParameterName): previous, 'ajax': 'true'})) }}"></a>
  6.         {% endif %}
  7.         <div>
  8.             <p><span>{{current}}</span> de {{pagesInRange|last}}</p>
  9.         </div>
  10.         {% if next is defined %}
  11.         <a class="button-next" href="#" paginator data-href="{{ path(route, query|merge({(pageParameterName): next, 'ajax': 'true'})) }}"></a>
  12.         {% endif %}
  13.     </div>
  14. </div>
  15. {% endif %}