templates/VisualMediaNewsBundle/views/News/ssi.html.twig line 1

Open in your IDE?
  1. {% for item in news %}
  2.     <div class="news-item">
  3.         <div class="news-item_image" style="background-image: url('{{ item.upload|url({ width: 960 }) }}');"></div>
  4.             <div class="news-item_content">
  5.                 <div class="news-item_content_wrapper">
  6.                 <a href="{{ path('news_view', { slug: item.slug }) }}">
  7.                     <h2>{{ item.title }} <i class="fas fa-arrow-right"></i></h2>
  8.                     <p>{{ item.metaDescription }}</p>
  9.                     <a href="{{ path('news_view', { slug: item.slug }) }}" class="btn btn-primary" >Verder lezen </a>
  10.                 </a>
  11.             </div>
  12.         </div>
  13.     </div>
  14. {% endfor %}