modules/QSL/ShopByBrand/templates/web/customer/modules/QSL/ShopByBrand/items_list/brand/body.twig line 1

Open in your IDE?
  1. {# #
  2.  # List main template
  3. #}
  4. <div {{ this.printTagAttributes(this.getWidgetTagAttributes())|raw }}>
  5.   {% do this.displayCommentedData(this.getJSData()) %}
  6.   {{ widget('QSL\\ShopByBrand\\View\\FilterByFirstLetter') }}
  7.   {{ widget('QSL\\ShopByBrand\\View\\FilterBySubstring') }}
  8.   {% if this.isHeadVisible() %}
  9.     <div class="head-h3 {{ this.getListHeadClass() }}">{{ this.getListHead()|raw }}</div>
  10.   {% endif %}
  11.   {% if this.isPagerVisible() %}
  12.     <div class="list-pager">{% do this.pager.display() %}</div>
  13.   {% endif %}
  14.   {% if this.isHeaderVisible() %}
  15.     <div class="list-header">{{ widget_list('header', type='inherited') }}</div>
  16.   {% endif %}
  17.   {% include this.getPageBodyTemplate() %}
  18.   {% if this.isPagerVisible() and this.pager.isPagesListVisible() %}
  19.     <div class="list-pager list-pager-bottom">{% do this.pager.display() %}</div>
  20.   {% endif %}
  21.   {% if this.isFooterVisible() %}
  22.     <div class="list-footer">{{ widget_list('footer', type='inherited') }}</div>
  23.   {% endif %}
  24.   {% if this.isEmptyListTemplateVisible() %}
  25.     {% include this.getEmptyListTemplate() %}
  26.   {% endif %}
  27. </div>