templates/editions/textes.html.twig line 1

Open in your IDE?
  1. {% extends 'editions/entete_editeur.inc.html.twig' %}
  2. {% block subcontent %}
  3. <main class="tc-desktop-2_3 tc-phone-1_1">
  4.     <section class="tc-panel tc-editions tc-editions">
  5.         <div class="tc-panel-header">
  6.             <h2 class="tc-color-textes">Tous les textes</h2>
  7.             <h3 class="tc-color-textes">Tri par date de parution
  8.                 {% if year is defined and year %}
  9.                     {{ year }}
  10.                 {% endif %}
  11.             </h3>
  12.         </div>
  13.         <div class="tc-panel-body tc-masonry-container">
  14.             {% for idtext,text in texts %}
  15.             <div class="tc-block tc-tablet-1_2 tc-textes-tpl-">
  16.                 {% include '/editions/texte_titre.inc.html.twig' %}
  17.             </div>
  18.             {% endfor %}
  19.         </div>
  20.         <div class="tc-panel-footer">
  21.             {% include 'includes/pagination.inc.html.twig' %}
  22.         </div>
  23.     </section>
  24. </main>
  25. {% endblock %}