{% extends 'Slivki/sale/index.html.twig' %}
{% block stylesheets %}
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/jquery.slick/1.6.0/slick.css"/>
{{ parent() }}
{% endblock %}
{% block main_content %}
<input type="hidden" id="categoryID" value="{{ currentCategoryID }}"/>
<div id="saleIndexTeasers">
{% for category in flierCategoryList %}
<div class="flier-list-wrap">
<div class="title">{{ category.category.getName() }} ({{ category.category.getEntityCount() }})</div>
<div class="flier-list noslider">
{% for sale in category.saleList %}
{% include 'Slivki/sale/flier.html.twig' with {'lazyLoad': false} %}
{% endfor %}
</div>
</div>
{% endfor %}
</div>
{% endblock %}
{% block javascripts %}
<script src="https://cdn.jsdelivr.net/jquery.slick/1.6.0/slick.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.countdown/2.2.0/jquery.countdown.min.js"></script>
{{ parent() }}
{% endblock %}