templates/header.html.twig line 1

Open in your IDE?
  1. <header>
  2.     {# % include "header-countdown.html.twig" % #}
  3.     
  4.     <div class="layout-maxed">
  5.         <nav class="main-menu flex justify-between my-20">
  6.             <a href="{{ path('app_index') }}" class="logo"></a>
  7.             <a href="{{ path('app_index') }}" class="hidden-sm">Accueil</a>
  8.             <a href="{{ path('app_discover') }}" class="hidden-sm">Découvrir l'outil</a>
  9.             <a href="{{ path('app_learning') }}" class="hidden-sm">Se former</a>
  10.             <a href="{{ path('app_faq') }}" class="hidden-sm">Contact / Assistance</a>
  11.             {% if is_granted('ROLE_ADMIN') %}
  12.                 <a href="{{ path('admin') }}" target="_blank">Admin.</a>
  13.             {% endif %}
  14.             <ul class="burger-menu hidden">
  15.                 <li><a href="{{ path('app_index') }}">Accueil</a></li>
  16.                 <li><a href="{{ path('app_discover') }}">Découvrir l'outil</a></li>
  17.                 <li><a href="{{ path('app_learning') }}">Se former</a></li>
  18.                 <li><a href="{{ path('app_faq') }}">Contact / Assistance</a></li>
  19.             </ul>
  20.             <button class="burger-button md:hidden" type="button" role="button" aria-label="open/close navigation">
  21.                 <svg class="open" width="30" height="30" viewBox="0 0 30 30">
  22.                     <rect width="30" height="1"></rect>
  23.                     <rect y="14" width="30" height="1"></rect>
  24.                     <rect y="29" width="30" height="1"></rect>
  25.                 </svg>
  26.                 <svg class="close hidden" width="30" height="30" viewBox="0 0 30 30">
  27.                     <line x1="0" y1="0" x2="30" y2="30" stroke="black" />
  28.                     <line x1="30" y1="0" x2="0" y2="30" stroke="black" />
  29.                 </svg>
  30.             </button>
  31.         </nav>
  32.     </div>
  33. </header>