51 lines
979 B
Twig
51 lines
979 B
Twig
{% extends "base.twig" %}
|
|
|
|
{% block content %}
|
|
<section>
|
|
<h3>Prochainement</h3>
|
|
<div class="coming_soon row align-items-start">
|
|
{% for item in posts %}
|
|
{% include 'components/thumbnails/thumbnails.twig' %}
|
|
{% endfor %}
|
|
|
|
<div class="">
|
|
Tout voir
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="association">
|
|
{% include 'partial/section_asso.twig' %}
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="projet">
|
|
{% include 'partial/section_projets.twig' %}
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="temps_forts">
|
|
{% include 'partial/section_tpsF.twig' %}
|
|
</section>
|
|
|
|
|
|
<section>
|
|
<div class="video">
|
|
<div class="__header">
|
|
<h1 class="titre">La Mine en vidéo</h1>
|
|
</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 %}
|