templates/educ/biographie-langagiere.header.inc.html.twig line 1

Open in your IDE?
  1. {% extends 'templates.html.twig' %}
  2. {% block headcontent %}
  3. <section class="tc-header row">
  4.     <header>
  5.         <h1>Biographie langagière, outil de formation à l'école</h1>
  6.     </header>
  7. </section>
  8. <nav class="tc-subnav">
  9.       <ul>
  10.         {% for k,v in menu_biolang %}
  11.             {% if v.active is defined and v.active == 'on' %}
  12.             <li class="tc-item-on">
  13.                 <a>{{ v.name }}</a>
  14.             </li>
  15.             {% else %}
  16.                 <li>
  17.                     <a href="/educ/{{ k }}">{{ v.name }}</a>
  18.                 </li>
  19.             {% endif %}
  20.         {% endfor %}
  21.      </ul>
  22. </nav>
  23. {% include 'includes/navigation.inc.html.twig' %}
  24. {% endblock %}
  25. {% block content %}
  26. <main class="tc-desktop-2_3 tc-phone">
  27.     {% block subcontent %}
  28.     {% endblock %}
  29. </main>
  30. {% endblock %}