templates/application/blog/list.html.twig line 1

Open in your IDE?
  1. {% for item in items %}
  2.     <div class="articles__column">
  3.         <div class="item item--article">
  4.             {% if item.image %}
  5.                 <div class="item__photo">
  6.                     {{ include('application/partial/picture.html.twig', {image: item.image, width: 400, height: 540}) }}
  7.                 </div>
  8.             {% endif %}
  9.             <div class="item__title">
  10.                 <a href="{{ documentUrl(item) }}">
  11.                     <span class="item__icon"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.146 3.133a.536.536 0 0 1 .708 0l5 4.546a.426.426 0 0 1 0 .642l-5 4.546a.536.536 0 0 1-.708 0 .426.426 0 0 1 0-.643L9.793 8 5.146 3.776a.426.426 0 0 1 0-.643z"></path></svg></span>
  12.                     <span class="item__text">{{ item.name(app.request.locale) }}</span>
  13.                 </a>
  14.             </div>
  15.         </div>
  16.     </div>
  17. {% endfor %}