accueil.twig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. {% include 'components/title_page.twig' %}
  4. <div class="content">
  5. <section class="hero">
  6. <h1 class="titre">{{ post.meta('titre') }}</h1>
  7. <div class="sous_titre">
  8. <h2 class="texte_chapeau">{{ post.meta('sous_titre') }}</h2>
  9. </div>
  10. <div class="slide_image">
  11. {% for item in post.meta('slide_image') %}
  12. <div class="images"><img src="{{ Image(item.image).src }}" /></div>
  13. {% endfor %}
  14. </div>
  15. </section>
  16. <section class="prochainement"></section>
  17. <section class="association">
  18. <section class="article-content">
  19. <h2 class="texte_chapeau">{{ post.meta('texte_chapeau_asso') }}</h2>
  20. <div class="image_sectionasso">
  21. <img src="{{ Image(post.meta('image')).src }}" />
  22. </div>
  23. <div class="article-body">
  24. {{ post.meta('paragraphe_descriptif') }}
  25. {{ post.meta('paragraphe_descriptif_2') }}
  26. </div>
  27. <div class="redirection_page">
  28. {% include 'components/buttons/bouton_ensavoir.html.twig' %}
  29. </div>
  30. </section>
  31. </section>
  32. <section class="section_projet">
  33. <section class="article-content">
  34. <h2 class="texte_chapeau">{{ post.meta('texte_chapeau_projet') }}</h2>
  35. </section>
  36. <section class="section_temps_forts"></section>
  37. <section class="mine_en_video">
  38. <section class="article-content">
  39. <div class="video_lamine">
  40. {{video_la_mine}}
  41. </div>
  42. </section>
  43. </section>
  44. </div>
  45. {% endblock %}