123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {% extends "base.twig" %}
- {% block content %}
- {% include 'components/title_page.twig' %}
- <div class="content">
- <section class="hero">
- <h1 class="titre">{{ post.meta('titre') }}</h1>
- <div class="sous_titre">
- <h2 class="texte_chapeau">{{ post.meta('sous_titre') }}</h2>
- </div>
- <div class="slide_image">
- {% for item in post.meta('slide_image') %}
- <div class="images"><img src="{{ Image(item.image).src }}" /></div>
- {% endfor %}
- </div>
- </section>
- <section class="prochainement"></section>
- <section class="association">
- <section class="article-content">
- <h2 class="texte_chapeau">{{ post.meta('texte_chapeau_asso') }}</h2>
- <div class="image_sectionasso">
- <img src="{{ Image(post.meta('image')).src }}" />
- </div>
- <div class="article-body">
- {{ post.meta('paragraphe_descriptif') }}
- {{ post.meta('paragraphe_descriptif_2') }}
- </div>
- <div class="redirection_page">
- {% include 'components/buttons/bouton_ensavoir.html.twig' %}
- </div>
- </section>
- </section>
- <section class="section_projet">
- <section class="article-content">
- <h2 class="texte_chapeau">{{ post.meta('texte_chapeau_projet') }}</h2>
- </section>
- <section class="section_temps_forts"></section>
- <section class="mine_en_video">
- <section class="article-content">
- <div class="video_lamine">
- {{video_la_mine}}
- </div>
- </section>
- </section>
- </div>
- {% endblock %}
|