templates/pagination.twig line 1

  1. {#
  2. /**
  3.  * @file
  4.  * Twitter Bootstrap v4 Sliding pagination control implementation.
  5.  *
  6.  * View that can be used with the pagination module
  7.  * from the Twitter Bootstrap CSS Toolkit
  8.  * https://getbootstrap.com/docs/4.5/components/pagination/
  9.  *
  10.  */
  11. #}
  12. {% if pageCount > 1 %}
  13.     <div class="product-pagination">
  14.         <div class="theme-paggination-block">
  15.             <div class="row">
  16.                 <div class="col-xl-6 col-md-6 col-sm-12">
  17.                     <nav aria-label="Page navigation">
  18.                         <ul class="pagination">
  19.                            {% if previous is defined %}
  20.                             <li class="page-item"><a class="page-link" href="{{ path(route, query|merge({(pageParameterName): previous})) }}" aria-label="Previous"><span aria-hidden="true"><i class="fa fa-chevron-left" aria-hidden="true"></i></span> <span class="sr-only">Previous</span></a></li>
  21.                            {% endif %}
  22.                            
  23.                             {% for page in pagesInRange %}
  24.                                 {% if page != current %}
  25.                                     <li class="page-item"><a class="page-link" href="{{ path(route, query|merge({(pageParameterName): page})) }}">{{ page }}</a></li>
  26.                                 {% else %}
  27.                                     <li class="page-item active">
  28.                                         <a class="page-link" href="#">{{ page }}</a>
  29.                                     </li>
  30.                                 {% endif %}
  31.                             {% endfor %}
  32.                             
  33.                             {% if next is defined %}
  34.                                 <li class="page-item"><a class="page-link" href="{{ path(route, query|merge({(pageParameterName): next})) }}" aria-label="Next"><span aria-hidden="true"><i class="fa fa-chevron-right" aria-hidden="true"></i></span> <span class="sr-only">Next</span></a></li>
  35.                             {% endif %}
  36.                         </ul>
  37.                     </nav>
  38.                 </div>
  39.                 
  40.             </div>
  41.         </div>
  42.     </div>
  43. {% endif %}
  44. {# {% if pageCount > 1 %}
  45.     <nav>
  46.         {% set classAlign = (align is not defined) ? '' : align=='center' ? ' justify-content-center' : (align=='right' ? ' justify-content-end' : '') %}
  47.         {% set classSize = (size is not defined) ? '' : size=='large' ? ' pagination-lg' : (size=='small' ? ' pagination-sm' : '') %}
  48.         <ul class="pagination{{ classAlign }}{{ classSize }}">
  49.             {% if previous is defined %}
  50.                 <li class="page-item">
  51.                     <a class="page-link" rel="prev" href="{{ path(route, query|merge({(pageParameterName): previous})) }}">&laquo;&nbsp;{{ 'label_previous'|trans({}, 'KnpPaginatorBundle') }}</a>
  52.                 </li>
  53.             {% else %}
  54.                 <li class="page-item disabled">
  55.                     <span class="page-link">&laquo;&nbsp;{{ 'label_previous'|trans({}, 'KnpPaginatorBundle') }}</span>
  56.                 </li>
  57.             {% endif %}
  58.             {% if startPage > 1 %}
  59.                 <li class="page-item">
  60.                     <a class="page-link" href="{{ path(route, query|merge({(pageParameterName): 1})) }}">1</a>
  61.                 </li>
  62.                 {% if startPage == 3 %}
  63.                     <li class="page-item">
  64.                         <a class="page-link" href="{{ path(route, query|merge({(pageParameterName): 2})) }}">2</a>
  65.                     </li>
  66.                 {% elseif startPage != 2 %}
  67.                     <li class="page-item disabled">
  68.                         <span class="page-link">&hellip;</span>
  69.                     </li>
  70.                 {% endif %}
  71.             {% endif %}
  72.             {% for page in pagesInRange %}
  73.                 {% if page != current %}
  74.                     <li class="page-item">
  75.                         <a class="page-link" href="{{ path(route, query|merge({(pageParameterName): page})) }}">{{ page }}</a>
  76.                     </li>
  77.                 {% else %}
  78.                     <li class="page-item active">
  79.                         <span class="page-link">{{ page }}</span>
  80.                     </li>
  81.                 {% endif %}
  82.             {% endfor %}
  83.             {% if pageCount > endPage %}
  84.                 {% if pageCount > (endPage + 1) %}
  85.                     {% if pageCount > (endPage + 2) %}
  86.                         <li class="page-item disabled">
  87.                             <span class="page-link">&hellip;</span>
  88.                         </li>
  89.                     {% else %}
  90.                         <li class="page-item">
  91.                             <a class="page-link" href="{{ path(route, query|merge({(pageParameterName): (pageCount - 1)})) }}">{{ pageCount -1 }}</a>
  92.                         </li>
  93.                     {% endif %}
  94.                 {% endif %}
  95.                 <li class="page-item">
  96.                     <a class="page-link" href="{{ path(route, query|merge({(pageParameterName): pageCount})) }}">{{ pageCount }}</a>
  97.                 </li>
  98.             {% endif %}
  99.             {% if next is defined %}
  100.                 <li class="page-item">
  101.                     <a class="page-link" rel="next" href="{{ path(route, query|merge({(pageParameterName): next})) }}">{{ 'label_next'|trans({}, 'KnpPaginatorBundle') }}&nbsp;&raquo;</a>
  102.                 </li>
  103.             {% else %}
  104.                 <li  class="page-item disabled">
  105.                     <span class="page-link">{{ 'label_next'|trans({}, 'KnpPaginatorBundle') }}&nbsp;&raquo;</span>
  106.                 </li>
  107.             {% endif %}
  108.         </ul>
  109.     </nav>
  110. {% endif %} #}