123456789101112131415161718192021222324252627282930313233343536373839 |
- {% extends "base.twig" %}
- {% block content %}
- {% include 'components/title_page.twig' %}
- <section class="texte_intro">
- <section class="article-content">
- <h2 class="texte_chapeau">{{ post.meta('texte_chapeau') }}</h2>
- <div class="article_body">
- {{ post.meta('paragraphe_descriptif') }}
- </div>
- </section>
- </section>
- <section class="slide_imglegende">
- {% for item in post.meta('slide_image') %}
- <div class="images"><img src="{{ Image(item.image).src }}" /></div>
- <div class="legendes">{{ item.titre_legende}}{{ item.texte_legende}}</div>
- {% endfor %}
- </section>
- <section class="organisation">
- <div class="colonne_orga">
- <section class="article-content">
- {% for item in post.meta('type_organisation') %}
- <h2 class="titre_bloc">{{ item.titre_bloc}}</h2>
- <div class="article_body">{{ item.paragraphe_descriptif}}</div>
- {% endfor %}
- </section>
- </div><!-- /colonne_orga -->
- </section>
- <section class="telechargement_plaquette">
- <a href="{{post.meta('bouton').document.url}}"download>{{post.meta('bouton').texte}}</a>
- </div>
- </section>
- {% endblock %}
|