templates/blog/block/recent.html.twig line 1

Open in your IDE?
  1. <div class="block">
  2.   <h3>Post recientes</h3>
  3.   <ul class="recent-posts">
  4.     {% for post in posts %}
  5.       <li>
  6.         {# <span class="created">{{ post.created | date('d F Y')}}</span> #}
  7.         <a href="{{ path('show_post', {slug: post.slug} ) }}" class="title">{{ post.title }}</a>
  8.       </li>
  9.     {% endfor %}
  10.   </ul>
  11. </div>