123456789101112131415161718 |
- <section class="hero row">
- <figure class="col px-0">
- <div class="main-carousel">
- {% for item in post.meta('slide_image') %}
- <div class="carousel-cell">
- <img src="{{ Image(item.image).src }}" alt="{{ Image(item.image).alt }}" />
- </div>
- {% endfor %}
- </div>
- <figcaption>
- <h1>{{ post.meta('titre') }}</h1>
- <h2>{{ post.meta('sous_titre') }}</h2>
- </figcaption>
- </figure>
- </section>
|