Files
lamine_wp/web/app/themes/la_mine/templates/single.twig
T
2020-05-28 09:27:03 +02:00

26 lines
560 B
Twig

{% 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 %}