{% if mostViewPosts|length %}
<h2 class="headding">
<span class="cl-org">#</span> Bài viết <span class="cl-org">nổi bật</span>
</h2>
{% for postItem in mostViewPosts %}
{% if loop.first %}
<div class="item-big">
<div class="image">
<a href="{{ postItem.url }}">
<img class="lazy-image"
src="{{ postItem.lazyAvatar }}"
data-srcset="{{ postItem.avatarMobile }} 720w, {{ postItem.avatar }} 1140w"
alt="{{ postItem.title }}"/>
</a>
<span class="tag-num">0{{ loop.index }}</span>
</div>
<div class="caption">
<h3 class="title">
<a href={{ postItem.url }} title="{{ postItem.title }}">{{ postItem.title }}</a>
</h3>
</div>
</div>
{% else %}
<div class="item-list">
<h3 class="title">
<a href="{{ postItem.url }}" title="{{ postItem.title }}"><span class="tag-num">0{{ loop.index }}</span>{{ postItem.title }}</a>
</h3>
</div>
{% endif %}
{% endfor %}
{% endif %}