<div class="autoCarousel autoCarousel-{{ index }}">
{% for key, picture in section.pictures %}
<picture>
<source srcset="{{ asset(picture.url.webp) }}" type="image/webp">
<source srcset="{{ asset(picture.url.jpg) }}" type="image/jpeg">
<img src="{{ asset(picture.url.jpg) }}" alt="{{ picture.alt }}" class="d-none">
</picture>
{% endfor %}
</div>
<div class="autoCarousel--imgdescriptions autoCarouselLegend autoCarouselLegend-{{ index }} d-none">
{% for key, picture in section.pictures %}
<p>{{ picture.alt }}</p>
{% endfor %}
</div>