templates/web/customer/pager/body.twig line 1

Open in your IDE?
  1. {##
  2.  # Pager
  3.  #}
  4. {% if this.isPagesListVisible() %}
  5.   <ul class="pagination grid-list">
  6.     {% for page in this.getPages() %}
  7.       <li class="{{ page.classes }}">
  8.         {% if page.href %}
  9.           <a href="{{ page.href }}" class="{{ page.page }}" title="{{ t(page.title) }}">{{ t(page.text)|raw }}</a>
  10.         {% endif %}
  11.         {% if not page.href %}
  12.           <span class="{{ page.page }}" title="{{ t(page.title) }}">{{ t(page.text)|raw }}</span>
  13.         {% endif %}
  14.       </li>
  15.     {% endfor %}
  16.   </ul>
  17. {% endif %}
  18. {{ widget_list('itemsTotal', type='inherited') }}