accueil.twig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. <section id="section_proch" class="row">
  4. <div class="container-fluid">
  5. <h3>Prochainement</h3>
  6. <div class="row">
  7. {% for item in posts %}
  8. {% include 'components/thumbnails/thumbnails.twig'%}
  9. {% endfor %}
  10. </div>
  11. <div class="row wrap-btn">
  12. <a class="btn _all" rel="noreferrer" href="/agenda">Tout voir</a>
  13. </div>
  14. </div>
  15. {# <div class="paralax" data-rellax-speed="5">
  16. <img src="{{theme.link}}/asset/images/objet_1.svg" alt="objet 1">
  17. </div> #}
  18. </section>
  19. <section id="section_asso" class="row">
  20. <div class="container-fluid">
  21. {% include 'partial/section_asso.twig' %}
  22. {# <div class="paralax" data-rellax-speed="3">
  23. <img src="{{theme.link}}/asset/images/objet_2.svg" alt="objet 2">
  24. </div> #}
  25. </div>
  26. </section>
  27. <section id="section_projets" class="row">
  28. <div class="container-fluid">
  29. {% include 'partial/section_projets.twig' %}
  30. {# <div class="paralax" data-rellax-speed="-2" data-rellax-percentage="0.5">
  31. <img src="{{theme.link}}/asset/images/objet_3.svg" alt="objet 3">
  32. </div> #}
  33. </div>
  34. </section>
  35. <section id="section_tpsF" class="row">
  36. <div class="container-fluid">
  37. {% include 'partial/section_tpsF.twig' %}
  38. </div>
  39. </section>
  40. <section id="section_MineVideo" class="row ">
  41. <div class="container-fluid">
  42. <h3>La Mine en vidéo</h3>
  43. {% if post.video_la_mine %}
  44. <figure class="row mx-0">
  45. <iframe width="560" height="315" src="//www.youtube.com/embed/{{ post.video_la_mine }}" frameborder="0" allowfullscreen></iframe>
  46. </figure>
  47. {% endif %}
  48. </div>
  49. </section>
  50. {% endblock %}