privatiser_lespace.twig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. {% include 'components/title_page.twig' %}
  4. <section class="texte_intro">
  5. <section class="article-content">
  6. <h2 class="texte_chapeau">{{ post.meta('texte_chapeau') }}</h2>
  7. <div class="article_body">
  8. {{ post.meta('paragraphe_descriptif') }}
  9. </div>
  10. </section>
  11. </section>
  12. <section class="slide_imglegende">
  13. {% for item in post.meta('slide_image') %}
  14. <div class="images"><img src="{{ Image(item.image).src }}" /></div>
  15. <div class="legendes">{{ item.titre_legende}}{{ item.texte_legende}}</div>
  16. {% endfor %}
  17. </section>
  18. <section class="organisation">
  19. <div class="colonne_orga">
  20. <section class="article-content">
  21. {% for item in post.meta('type_organisation') %}
  22. <h2 class="titre_bloc">{{ item.titre_bloc}}</h2>
  23. <div class="article_body">{{ item.paragraphe_descriptif}}</div>
  24. {% endfor %}
  25. </section>
  26. </div><!-- /colonne_orga -->
  27. </section>
  28. <section class="telechargement_plaquette">
  29. <a href="{{post.meta('bouton').document.url}}"download>{{post.meta('bouton').texte}}</a>
  30. </div>
  31. </section>
  32. {% endblock %}