templates/News/news.html.twig line 1

Open in your IDE?
  1. {% extends 'Default/base.html.twig' %}
  2. {% block body %}
  3.     <section class="container_12 news">
  4.         {% for item in news %}
  5.             <div class="grid_12">
  6.                 <h2>
  7.                     <a href=#"">
  8.                         {{ item.title }}
  9.                     </a>
  10.                 </h2>
  11.                 <div class="">
  12.                     <p>
  13.                         {{ item.content }}
  14.                     </p>
  15.                 </div>
  16.             </div>
  17.         {% endfor %}
  18.     </section>
  19. {% endblock %}
  20.