templates/Slivki/sale/flier_index.html.twig line 1

Open in your IDE?
  1. {% extends 'Slivki/sale/index.html.twig' %}
  2. {% block stylesheets %}
  3.     <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/jquery.slick/1.6.0/slick.css"/>
  4.     {{ parent() }}
  5. {% endblock %}
  6. {% block main_content %}
  7.     <input type="hidden" id="categoryID" value="{{ currentCategoryID }}"/>
  8.     <div id="saleIndexTeasers">
  9.         {% for category in flierCategoryList %}
  10.             <div class="flier-list-wrap">
  11.                 <div class="title">{{ category.category.getName() }} ({{ category.category.getEntityCount() }})</div>
  12.                 <div class="flier-list noslider">
  13.                     {% for sale in category.saleList %}
  14.                         {% include 'Slivki/sale/flier.html.twig' with {'lazyLoad': false} %}
  15.                     {% endfor %}
  16.                 </div>
  17.             </div>
  18.         {% endfor %}
  19.     </div>
  20. {% endblock %}
  21. {% block javascripts %}
  22.     <script src="https://cdn.jsdelivr.net/jquery.slick/1.6.0/slick.min.js"></script>
  23.     <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.countdown/2.2.0/jquery.countdown.min.js"></script>
  24.     {{ parent() }}
  25. {% endblock %}