<div class="block">
<h3>Post recientes</h3>
<ul class="recent-posts">
{% for post in posts %}
<li>
{# <span class="created">{{ post.created | date('d F Y')}}</span> #}
<a href="{{ path('show_post', {slug: post.slug} ) }}" class="title">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>