templates/nglayouts/themes/standard/block/list/clients.html.twig line 1

  1. {% extends '@nglayouts/block/block.html.twig' %}
  2. {% block content %}
  3.     {% if collections.default|length %}
  4.         <section class="clients-section pt-60">
  5.             <div class="auto-container">
  6.                 <div class="sec-title text-center">
  7.                     <span class="sub-title">{{'app.ui.partners'|trans}}</span>
  8.                     <h2>Some of the brands that<br/> place their
  9.                         <span class="color3">trust in us</span>
  10.                     </h2>
  11.                 </div>
  12.                 <!-- Sponsors Outer -->
  13.                 <div
  14.                     class="sponsors-outer">
  15.                     <!--clients carousel-->
  16.                     <ul class="clients-carousel owl-carousel owl-theme">
  17.                         {% for result in collections.default %}
  18.                             {{ nglayouts_render_result(result, null, block.itemViewType) }}
  19.                         {% endfor %}
  20.                     </ul>
  21.                 </div>
  22.             </div>
  23.         </section> 
  24.     {% endif %}
  25. {% endblock %}