templates/posts/posts_sidebar.html.twig line 1

Open in your IDE?
  1. <div class="widget widget-post">
  2.     <div class="widget-header">
  3.         <h5 class="title">Most Popular Post</h5>
  4.     </div>
  5.     <div class="widget-body">
  6.         <ul>
  7.             {% for content in collection %}
  8.             <li>
  9.                 <div class="thumb">
  10.                     <a href="{{ path('post_show', {'slug':content.slug}) }}">
  11.                         <img src="{{ asset(content.getThumbnailPath())|imagine_filter('squared_thumbnail_small') }}" alt="{{ content.title }}">
  12.                     </a>
  13.                 </div>
  14.                 <div class="content">
  15.                     <a href="{{ path('post_show', {'slug':content.slug}) }}">{{ content.title }}</a>
  16.                     <span>{{ content.datePublished|date("j F Y") }}</span>
  17.                 </div>
  18.             </li>
  19.             {% endfor %}
  20.         </ul>
  21.     </div>
  22. </div>