templates/blogue/index.html.twig line 1

Open in your IDE?
  1. {% set templete = site~'/'~_locale~".html.twig" %}
  2. {% extends templete %}
  3. {% block stylesheets %}
  4.     <link rel="stylesheet" href="{{ asset('css/blogue.css') }}">
  5. {% endblock %}
  6. {% block body %}
  7.     <section class="blogue">
  8.         <div class="wrap">
  9.             <img src="{{ asset('img/qblog.png') }}" alt="icon" class="preh2">
  10.             <h1>{{ 'notre_blog_immobilier'|trans }}</h1>
  11.             <div class="articles-grid">
  12.                 {% for article in articles %}
  13.                     {% include 'blogue/article_item.html.twig' %}
  14.                 {% endfor %}
  15.             </div>
  16.             {{ knp_pagination_render(articles) }}
  17.         </div>
  18.     </section>
  19. {% endblock %}