templates/entreprise/product_by_category.html.twig line 1

Open in your IDE?
  1. {% extends 'base_catalog.html.twig' %}
  2.     {% block side_menu %}
  3.         
  4.     {% endblock side_menu %}
  5.         
  6.     {% block real_content %}
  7.         {{ include ('entreprise/product_raw_list_1.html.twig') }}
  8.         
  9.         {% if pageAmount > 1 %}
  10.         <div>
  11.         <div class="pt-4 pb-5 mb-4">
  12.             <!-- Pagination-->
  13.             <nav class="d-flex justify-content-between pt-2" aria-label="Page navigation">
  14.                 {% set preview = currentPage - 1 %}
  15.                 {% set next = currentPage + 1 %}
  16.              {% if currentPage > 1 %}
  17.              <ul class="pagination">
  18.                 <li class="page-item"><a class="page-link" href="{{ path('product_by_category', {'slug': category.slug, 'page':'page', 'currentPage': preview}) }}"><i class="czi-arrow-left mr-2"></i>Prev</a></li>
  19.               </ul>
  20.             {% endif %}
  21.               <ul class="pagination">
  22.                 <li class="page-item d-sm-none"><span class="page-link page-link-static">1 / {{ pageAmount }}</span></li>
  23.                 {% for i in range(1, pageAmount) %}
  24.                     <li class="page-item {% if i == currentPage %} active{% endif %} d-none d-sm-block"><a class="page-link" href="{{ path('product_by_category', {'slug': category.slug, 'page':'page', 'currentPage': i}) }}">{{ i }}</a></li>
  25.                 {% endfor %}
  26.               </ul>
  27.               {% if currentPage < pageAmount %}
  28.               <ul class="pagination">
  29.                 <li class="page-item"><a class="page-link" href="{{ path('product_by_category', {'slug': category.slug, 'page':'page', 'currentPage': next}) }}" aria-label="Next">Next<i class="czi-arrow-right ml-2"></i></a></li>
  30.               </ul>
  31.               
  32.               {% endif %}
  33.             </nav>
  34.           </div>
  35.           </div>
  36.         {% endif %}
  37.     {% endblock real_content %}
  38.