templates/common/most-view-post.html.twig line 1

Open in your IDE?
  1. {% if mostViewPosts|length %}
  2.     <h2 class="headding">
  3.         <span class="cl-org">#</span> Bài viết <span class="cl-org">nổi bật</span>
  4.     </h2>
  5.     {% for postItem in mostViewPosts %}
  6.         {% if loop.first %}
  7.             <div class="item-big">
  8.                 <div class="image">
  9.                     <a href="{{ postItem.url }}">
  10.                         <img class="lazy-image"
  11.                              src="{{ postItem.lazyAvatar }}"
  12.                              data-srcset="{{ postItem.avatarMobile }} 720w, {{ postItem.avatar }} 1140w"
  13.                              alt="{{ postItem.title }}"/>
  14.                     </a>
  15.                     <span class="tag-num">0{{ loop.index }}</span>
  16.                 </div>
  17.                 <div class="caption">
  18.                     <h3 class="title">
  19.                         <a href={{ postItem.url }} title="{{ postItem.title }}">{{ postItem.title }}</a>
  20.                     </h3>
  21.                 </div>
  22.             </div>
  23.         {% else %}
  24.             <div class="item-list">
  25.                 <h3 class="title">
  26.                     <a href="{{ postItem.url }}" title="{{ postItem.title }}"><span class="tag-num">0{{ loop.index }}</span>{{ postItem.title }}</a>
  27.                 </h3>
  28.             </div>
  29.         {% endif %}
  30.     {% endfor %}
  31. {% endif %}