{% if sliderItemPaginator.result|length > 0 %}
<section class="komili-home-hero owl-carousel" style="height:auto;">
{% for item in sliderItemPaginator.result %}
<div class="hero-item">
<a {% if item.path %}href="{{ item.path }}"{% else %}href="javascript:;" {% endif %}>
<img src="{{ item.image.url }}" alt="">
</a>
</div>
{% endfor %}
</section>
{% endif %}