accueil.twig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. <section>
  4. <div class="">
  5. <div class="header">
  6. <h3 class="titre">Prochainement</h3>
  7. </div>
  8. <div class="__body">
  9. <div class="coming_soon row align-items-start">
  10. {% for item in posts %}
  11. {% include 'components/thumbnails/thumbnails.twig' %}
  12. {% endfor %}
  13. <div class="btn tout_voir">
  14. <a href="{{agenda.url}}">Tout voir</a>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. </section>
  20. <section id="section_asso">
  21. <div class="association">
  22. {% include 'partial/section_asso.twig' %}
  23. </div>
  24. </section>
  25. <section id="section_projets">
  26. <div class="projet">
  27. {% include 'partial/section_projets.twig' %}
  28. </div>
  29. </section>
  30. <section id="section_tpsF">
  31. <div class="temps_forts">
  32. {% include 'partial/section_tpsF.twig' %}
  33. </section>
  34. <section id="section_MineVideo">
  35. <div class="video">
  36. <div class="__header">
  37. <h3 class="titre">La Mine en vidéo</h3>
  38. </div>
  39. <div class="__body">
  40. <div class="wrapper__content">
  41. {% if post.video_la_mine %}
  42. <iframe width="560" height="315" src="//www.youtube.com/embed/{{ post.video_la_mine }}" frameborder="0" allowfullscreen></iframe>
  43. {% endif %}
  44. </div>
  45. </div>
  46. </section>
  47. {% endblock %}