<header>
{% set current_path = app.request.get('_route') %}
<div class="container">
<div class="row align-items-center">
<div class="col-6 col-md-3">
<a href="{{ path('app_home_index') }}">
<img src="{{ asset('build/images/header-logo.svg') }}" width="244" height="40" alt="URGENCE DOCTEURS" class="header__logo">
</a>
</div>
<div class="col-6 col-md-9">
<div class="d-flex flex-wrap align-items-center justify-content-end gap-3">
<a class="fs-16 fw-medium ff-work-sans d-none d-md-inline-block" href="{{ path('app_medecin_index') }}">Vous êtes Docteur?</a>
<a class="fs-16 fw-medium ff-work-sans d-none d-md-inline-block" href="#content-apps">Téléchargez l’application</a>
{% 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' %}
<a href="{{ path('app_cms_prendrerdv' )}}" class="button button-contained-primary">Prendre rendez-vous</a>
{% endif %}
</div>
</div>
</div>
</div>
</header>