privatiser_lespace.twig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. {% include 'components/title_page.twig' %}
  4. <div class="paralax" data-rellax-speed="-10">
  5. <img src="{{theme.link}}/dist/assets/images/objet_7.svg" alt="objet 7">
  6. </div>
  7. <article>
  8. <div class="wrapper__content prive">
  9. <div class="wrap__content">
  10. <div class="__header">
  11. <h2 class="texte_chapeau">{{ post.meta('texte_chapeau') }}</h2>
  12. </div>
  13. <div class="__body">
  14. {{ post.meta('paragraphe_descriptif') }}
  15. </div>
  16. </div>
  17. <div class="wrap__content privatiser main-carousel">
  18. {% for item in post.meta('slide_image') %}
  19. <figure>
  20. <img alt="{{ Image(item.image).alt }}" src="{{ Image(item.image).src }}" />
  21. <div class="container position-relative">
  22. <figcaption class="legendes col-10 col-md-6 col-lg-4">
  23. <div class="__head">
  24. <h6>{{ item.titre_legende}}</h6>
  25. </div>
  26. <div class="__content">
  27. <p>{{ item.texte_legende}}</p>
  28. </div>
  29. </figcaption>
  30. </div>
  31. </figure>
  32. {% endfor %}
  33. </div>
  34. <div class="wrap__content __organisation">
  35. <div class="__body row justify-content-center">
  36. {% for item in post.meta('type_organisation') %}
  37. <article class="__content _orga col-12 col-sm-6 col-md-4">
  38. <div class="title">
  39. <h5>{{ item.titre_bloc}}</h5>
  40. </div>
  41. <div class="__item">
  42. {{item.paragraphe_descriptif}}
  43. </div>
  44. </article>
  45. {% endfor %}
  46. </div>
  47. </div>
  48. <div class = "bouton row justify-content-center">
  49. {% include 'components/buttons/boutton_privatiser.html.twig' %}
  50. </div>
  51. </div>
  52. </article>
  53. {% endblock %}