templates/application/projects/project-block.html.twig line 1

Open in your IDE?
  1.     <div class="item item--project-list">
  2.         <div class="item__photo">
  3.             {{ include('application/partial/picture.html.twig', {image: project.image, width: 650, height: 425}) }}
  4.         </div>
  5.         <div class="item__title">
  6.             <a href="{{ documentUrl(project) }}">
  7.                 <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>
  8.                 <span class="item__text">{{ project.name(app.request.locale) }}</span>
  9.             </a>
  10.         </div>
  11.     </div>