templates/pages/news/topics_headline.html.twig line 1

Open in your IDE?
  1. {% for news in data %}
  2. <a {% include "pages/news/_link.html.twig" %}>
  3.   {# thumbnail #}
  4.   {# {% if news.hasThumbnailImage %}
  5.     <img src="{{ path("news_image", {"filename": news.getThumbnailRemote}) }}" alt="{{ news.title }}">
  6.   {% else %}
  7.     <img src="{{ asset('images/no-image.jpg') }}" alt="{{ news.title }}">
  8.   {% endif %} #}
  9.   <time>
  10.     {{ news.entryDate|date('Y.m.d') }}
  11.   </time>
  12.   <h1>
  13.     {{ news.trans('title') }}
  14.   </h1>
  15. </a>
  16. {% endfor %}