{% for key, post in posts %}
{% if asbtemplate.post.postFile %}
<div>
<img src="{{ asset(vich_uploader_asset(post, 'postFile')) | imagine_filter('my_thumb') }}"
alt="{{ post.title }}" width="200px"/>
</div>
{% endif %}
{% if asbtemplate.post.title %}
<p>{{ post.title }}</p>
{% endif %}
{% if asbtemplate.post.intro %}
<p>{{ post.intro }}</p>
{% endif %}
{% if asbtemplate.post.date %}
<p>{{ post.date|date("d/m/Y") }}</p>
{% endif %}
<div>
<a href="{{ path('front_post', {'slug':post.slug}) }}">Lire l'article</a>
</div>
{% endfor %}