templates/blog/recent.html.twig line 1

Open in your IDE?
  1. {% for post in posts %}
  2.     <a class="media text-default align-items-center mb-5" href="{{ path('show_post', {'slug': post.slug, 'year': post.date.format('Y'), 'month': post.date.format('m'), 'day': post.date.format('d') }) }}">
  3.         <img class="rounded w-65px mr-4" src="{{ asset('/assets/blog/'~ post.imageName) | imagine_filter('avatar') }}" alt="Imagen de la publicación">
  4.         <p class="media-body small-2 lh-4 mb-0">{{ post.title }}</p>
  5.     </a>
  6. {% endfor %}