accueil.twig 1.1 KB

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