templates/frontend/banner/_banner.html.twig line 1
{% if banners | length > 0 %}
<div class="owl-carousel owl-theme">
{% for banner in banners %}
<div class="item"><img width="300" src="{{ asset(banner.image) }}" alt=""/></div>
{% endfor %}
</div>
<script>
$('.owl-carousel').owlCarousel({
loop: true,
autoplay: true,
margin: 10,
animateOut: 'fadeOut',
responsive: {
0: {
items: 1
},
600: {
items: 1
},
1000: {
items: 1
}
}
});
</script>
{% endif %}