12345678910111213141516171819202122232425 |
- {% extends "base.twig" %}
- {% block content %}
- <div class="content-wrapper">
- <article class="post-type-{{ post.titre}}">
- <img src="{{ post.image_event}}">
- <section class="article-content">
- <h1 class="article-h1">{{ post.titre }}</h1>
- <div class="article-body">
- {{post.description}}
- {{post.lieu}}
- </div>
- <div class="other-posts">
- {% for item in posts %}
- {% include 'components/thumbnails/thumbnails.twig' %}
- {% endfor %}
- </div>
- </section>
- </article>
- </div><!-- /content-wrapper -->
- {% endblock %}
|