templates/front/blog/sidebar_recent_blogs.html.twig line 1

Open in your IDE?
  1. <div class="single-sidebar wow fadeInUp animated" data-wow-delay="0.3s" data-wow-duration="1200ms">
  2.     <div class="title">
  3.         <h3>{{ 'app.blog.recent_blogs'|trans }}</h3>
  4.     </div>
  5.     <ul class="recent-posts">
  6.         {% for post in recentPosts %}
  7.             <li>
  8.                 <div class="img-box">
  9.                     <img src="{{ asset(blog_images_directory ~ '/' ~ post.image) }}" alt="Awesome Image">
  10.                     <div class="overlay-content">
  11.                         <a href="{{ path('front_blog_show', { id : post.id }) }}"><i class="fa fa-link" aria-hidden="true"></i></a>
  12.                     </div>
  13.                 </div>
  14.                 <div class="title-box">
  15.                     <h4><a href="{{ path('front_blog_show', { id : post.id }) }}">{{ post.title|striptags[:20] }}{% if post.title|length > 20 %}...{% endif %}</a></h4>
  16.                     <p>{{ post.date|date('d/m/Y') }}</p>
  17.                 </div>
  18.             </li>
  19.         {% endfor %}
  20.     </ul>
  21. </div>