association.twig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. {% include 'components/title_page.twig' %}
  4. <section class="row">
  5. <aside class="sidebar_left col-12 col-md-12 col-lg-4">
  6. <div class="wrapper">
  7. {% include '/components/sider_left.twig' with { name__template : 'association' } %}
  8. </div>
  9. {% include '/components/buttons/bouton_asso.html.twig' %}
  10. </aside>
  11. <div class="paralax" data-rellax-speed="-10">
  12. <img src="{{theme.link}}/dist/assets/images/objet_1.svg" alt="objet 1">
  13. </div>
  14. <section class="wrapper__content col-12 col-md-12 col-lg-8">
  15. <article class="wrap__content __asso">
  16. <header>
  17. <h3 class="titre_1">{{ post.meta('titre_asso') }}</h3>
  18. </header>
  19. <section class="__body">
  20. {{ post.meta('paragraphe_asso') }}
  21. </section>
  22. </article>
  23. <article class="wrap__content engagement">
  24. <header>
  25. <h3 class="titre_1">{{ post.meta('titre_engage') }}</h3>
  26. </header>
  27. <section class="__body">
  28. <figure class="__image">
  29. <img src="{{ Image(post.meta('image_engagement')).src }}" alt="{{ Image(post.meta('image_engagement')).alt }}"/>
  30. </figure>
  31. <section class="tableau_engagements card-columns ">
  32. {% for item in post.meta('type_engagement') %}
  33. <article class="engagement card">
  34. <header>
  35. <h4>{{item.titre_engagement}}</h4>
  36. </header>
  37. <div class="__content">
  38. {{item.paragraphe_engagement}}
  39. </div>
  40. </article>
  41. {% endfor %}
  42. </section>
  43. <section class="wrap__content vie-asso">
  44. <div class="__header">
  45. <h3 class="titre_1">{{ post.meta('titre_vieasso') }}</h3>
  46. </div>
  47. <div class="__body">
  48. {{ post.meta('paragraphe_vieasso') }}
  49. </div>
  50. </section>
  51. </section>
  52. </article>
  53. </section>
  54. </section>
  55. {% endblock %}