{% if posts|length %}
{% for post in posts %}
<div class="item-news">
<div class="image">
<a href="{{ post.url }}">
<img class="lazy-image"
src="{{ post.lazyAvatar }}"
data-srcset="{{ post.avatarMobile }} 720w, {{ post.avatar }} 1140w"
alt="{{ post.title }}"/>
</a>
</div>
<div class="caption">
<h3 class="title">
<a href="{{ post.url }}">{{ post.title }}</a>
</h3>
<p class="info">
<a href="javascript:void(0);" class="cl-org upper">{{ post.authorName }} </a>- <span class="time-ago" title="{{ post.publish_time_ago }}">{{ post.publishedDate }}</span>
</p>
<p class="desc">
{{ post.sapo }}
</p>
</div>
</div>
{% endfor %}
{% endif %}