You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
536 B
22 lines
536 B
{% if banners|length > 1 %}
|
|
<swiper class="banners" :options="{
|
|
effect: 'slide',
|
|
speed: 700,
|
|
loop: true,
|
|
autoplay: {delay: 5000},
|
|
pagination: {
|
|
el: '.swiper-pagination',
|
|
clickable: true,
|
|
}}">
|
|
{% for banner in banners %}
|
|
<swiper-slide>
|
|
{% include 'templates/blocks/banner.html' %}
|
|
</swiper-slide>
|
|
{% endfor %}
|
|
<div class="swiper-pagination" slot="pagination"></div>
|
|
</swiper>
|
|
{% else %}
|
|
<div class="banners">
|
|
{% include 'templates/blocks/banner.html' with banner=banners.0 %}
|
|
</div>
|
|
{% endif %}
|
|
|