19 lines
411 B
Twig
19 lines
411 B
Twig
{% extends "base.twig" %}
|
|
|
|
{% block content %}
|
|
<div class="content-wrapper">
|
|
{{dump(post)}}
|
|
<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}}
|
|
</div>
|
|
</section>
|
|
</article>
|
|
</div><!-- /content-wrapper -->
|
|
{% endblock %}
|