1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {% extends "base.twig" %}
- {% block content %}
- <section>
- <div class="">
- <div class="header">
- <h3 class="titre">Prochainement</h3>
- </div>
- <div class="__body">
- <div class="coming_soon row align-items-start">
- {% for item in posts %}
- {% include 'components/thumbnails/thumbnails.twig' %}
- {% endfor %}
- <div class="btn tout_voir">
- <a href="{{agenda.url}}">Tout voir</a>
- </div>
- </div>
- </div>
- </div>
- </section>
- <section id="section_asso">
- <div class="association">
- {% include 'partial/section_asso.twig' %}
- </div>
- </section>
- <section id="section_projets">
- <div class="projet">
- {% include 'partial/section_projets.twig' %}
- </div>
- </section>
- <section id="section_tpsF">
- <div class="temps_forts">
- {% include 'partial/section_tpsF.twig' %}
- </section>
- <section id="section_MineVideo">
- <div class="video">
- <div class="__header">
- <h3 class="titre">La Mine en vidéo</h3>
- </div>
- <div class="__body">
- <div class="wrapper__content">
- {% if post.video_la_mine %}
- <iframe width="560" height="315" src="//www.youtube.com/embed/{{ post.video_la_mine }}" frameborder="0" allowfullscreen></iframe>
- {% endif %}
- </div>
- </div>
- </section>
- {% endblock %}
|