templates/audios/audios_entete.inc.html.twig line 1

Open in your IDE?
  1. {% extends 'templates.html.twig' %}
  2. {% block headcontent %}
  3.     {% if area is defined and area is not null %}
  4.     <div class="tc-regions">
  5.         <section class="tc-header row">
  6.             <header class="tc-panel">
  7.                 <div class="tc-panel-header">
  8.                     <h1>
  9.                         {% if country_name is defined and country_name is not empty %}
  10.                             {{ country_name|raw }}
  11.                         {% else %}
  12.                             rĂ©gion {{ region_name|raw }}
  13.                         {% endif %}
  14.                     </h1>
  15.                 </div>
  16.             </header>
  17.             {% for idaside,aside_content in aside_top %}
  18.                 {% include aside_content.html~".twig" %}
  19.             {% endfor %}
  20.         </section>
  21.     </div>
  22.     {% else %}
  23.     <section class="tc-header tc-videos row">
  24.         <header class="tc-panel">
  25.             <div class="tc-desktop-2_3 tc-phone-1_1">
  26.                 <div class="tc-header row tc-phone-1_1 tc-tablet-5_6">
  27.                     <header>
  28.                         <h1>Audio</h1>
  29.                     </header>
  30.                 </div>
  31.             </div>
  32.         </header>
  33.         <nav class="tc-subnav">
  34.             <ul>
  35.                 {% for k,v in menu_audio %}
  36.                     {% if v.active is not defined or (v.active is defined and not v.active) %}
  37.                     <li>
  38.                         {% if v.first is defined and v.first %}
  39.                             <a href="/audios/" title="{{ v.title}}">{{ v.nom|raw }}</a>
  40.                         {% else %}
  41.                             <a href="/audios/{{ k }}/" title="{{ v.title}}">{{ v.nom|raw }}</a>
  42.                         {% endif %}
  43.                     </li>
  44.                     {% else %}
  45.                     <li class="tc-item-on">
  46.                         <a href="/audios/{{ k }}/" title="{{ v.title}}">{{ v.nom|raw }}</a>
  47.                     </li>
  48.                     {% endif %}
  49.                 {% endfor %}
  50.             </ul>
  51.         </nav>
  52.     </section>
  53.     {% endif %}
  54. {% endblock %}
  55. {% block content %}
  56.     {% include 'includes/navigation.inc.html.twig' %}
  57.     {% include 'montheatre/bookmarking.inc.html.twig' %}
  58.     {% block subcontent %}{% endblock %}
  59. {% endblock %}
  60. {% block javascripts %}
  61.     <script src="{{ racine_site }}/navigation/js/france-culture/iframe-size.js"></script>
  62.     <script src="{{ racine_site }}/navigation/js/france-inter/iframe-size.js"></script>
  63. {% endblock %}