hero.twig 409 B

123456789101112131415161718
  1. <section class="hero row">
  2. <figure class="col px-0">
  3. <div class="main-carousel">
  4. {% for item in post.meta('slide_image') %}
  5. <div class="carousel-cell">
  6. <img src="{{ Image(item.image).src }}" alt="{{ Image(item.image).alt }}" />
  7. </div>
  8. {% endfor %}
  9. </div>
  10. <figcaption>
  11. <h1>{{ post.meta('titre') }}</h1>
  12. <h2>{{ post.meta('sous_titre') }}</h2>
  13. </figcaption>
  14. </figure>
  15. </section>