<div class="single-sidebar wow fadeInUp animated" data-wow-delay="0.3s" data-wow-duration="1200ms">
<div class="title">
<h3>{{ 'app.blog.recent_blogs'|trans }}</h3>
</div>
<ul class="recent-posts">
{% for post in recentPosts %}
<li>
<div class="img-box">
<img src="{{ asset(blog_images_directory ~ '/' ~ post.image) }}" alt="Awesome Image">
<div class="overlay-content">
<a href="{{ path('front_blog_show', { id : post.id }) }}"><i class="fa fa-link" aria-hidden="true"></i></a>
</div>
</div>
<div class="title-box">
<h4><a href="{{ path('front_blog_show', { id : post.id }) }}">{{ post.title|striptags[:20] }}{% if post.title|length > 20 %}...{% endif %}</a></h4>
<p>{{ post.date|date('d/m/Y') }}</p>
</div>
</li>
{% endfor %}
</ul>
</div>