templates/post/post_list.html.twig line 1

Open in your IDE?
  1. {% if posts|length %}
  2.     {% for post in posts %}
  3.         <div class="item-news">
  4.             <div class="image">
  5.                 <a href="{{ post.url }}">
  6.                     <img class="lazy-image"
  7.                          src="{{ post.lazyAvatar }}"
  8.                          data-srcset="{{ post.avatarMobile }} 720w, {{ post.avatar }} 1140w"
  9.                          alt="{{ post.title }}"/>
  10.                 </a>
  11.             </div>
  12.             <div class="caption">
  13.                 <h3 class="title">
  14.                     <a href="{{ post.url }}">{{ post.title }}</a>
  15.                 </h3>
  16.                 <p class="info">
  17.                     <a href="javascript:void(0);" class="cl-org upper">{{ post.authorName }} </a>- <span class="time-ago" title="{{ post.publish_time_ago }}">{{ post.publishedDate }}</span>
  18.                 </p>
  19.                 <p class="desc">
  20.                     {{ post.sapo }}
  21.                 </p>
  22.             </div>
  23.         </div>
  24.     {% endfor %}
  25. {% endif %}