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

Open in your IDE?
  1. {% for post in posts %}
  2.     <li>
  3.         <div class="img-box">
  4.             <img src="{{ asset(blog_images_directory ~ '/' ~ post.image) }}" alt="Awesome Image">
  5.             <div class="overlay-style1 bg1"></div>
  6.             <div class="overlay-content">
  7.                 <a href="#">
  8.                     <i class="fa fa-link" aria-hidden="true"></i>
  9.                 </a>
  10.             </div>
  11.         </div>
  12.         <div class="title-box">
  13.             <h4>
  14.                 <a href="#">{{ post.title[:50] ~ (post.title|length > 50 ? '...') }}</a>
  15.             </h4>
  16.             <p>{{ post.date|date("j, F Y") }}</p>
  17.         </div>
  18.     </li>
  19. {% endfor %}