templates/textes/contenus-pedagogiques.html.twig line 1

Open in your IDE?
  1. {% extends 'templates.html.twig' %}
  2. {% block headcontent %}
  3.     {% include "textes/texte_entete.inc.html.twig" %}
  4. {% endblock %}
  5. {% block content %}
  6.     {% if is_educ is defined and is_educ %}
  7.     <div class="tc-educ">
  8.     {% endif %}
  9.     <main class="tc-desktop-2_3 tc-phone-1_1">
  10.         <section class="tc-panel">
  11.             {% if detailarticle.ol is defined %}
  12.             <div class="nolang">
  13.                 {% trans %}only_nav{% endtrans %}
  14.             </div>
  15.             {% endif %}
  16.             {% include 'includes/present.inc.html.twig' %}
  17.         </section>
  18.         <hr>
  19.         {% include 'includes/pdfs.inc.html.twig' with {'detailarticle': detailarticle} %}
  20.     </main>
  21.     {% if is_educ %}
  22.         </div>
  23.     {% endif %}
  24. {% endblock %}