templates/header.html.twig line 1

Open in your IDE?
  1. <header>
  2.     {% set current_path = app.request.get('_route') %}
  3.     <div class="container">
  4.         <div class="row align-items-center">
  5.             <div class="col-6 col-md-3">
  6.                 <a href="{{ path('app_home_index') }}">
  7.                     <img src="{{ asset('build/images/header-logo.svg') }}" width="244" height="40" alt="URGENCE DOCTEURS" class="header__logo">
  8.                 </a>
  9.             </div>
  10.             <div class="col-6 col-md-9">
  11.                 <div class="d-flex flex-wrap align-items-center justify-content-end gap-3">
  12.                     <a class="fs-16 fw-medium ff-work-sans d-none d-md-inline-block" href="{{ path('app_medecin_index') }}">Vous êtes Docteur?</a>
  13.                     <a class="fs-16 fw-medium ff-work-sans d-none d-md-inline-block" href="#content-apps">Téléchargez l’application</a>
  14.                     {% if current_path != 'app_commande_domicile' and current_path !=  'app_commande_visio' and current_path !=  'app_commande_step2' and current_path !=  'app_commande_step3' and current_path != 'app_commande_intervention' %}
  15.                         <a href="{{ path('app_cms_prendrerdv' )}}" class="button button-contained-primary">Prendre rendez-vous</a>
  16.                     {% endif %}
  17.                 </div>
  18.             </div>
  19.         </div>
  20.     </div>
  21. </header>