templates/en/hcp-top-menu.html.twig line 1

Open in your IDE?
  1. <nav id="menu-top" class="bg-patient py-3 d-none d-lg-block">
  2.     <div class="container d-flex text-white justify-content-between">
  3.         <a class="text-white text-decoration-none" href="{{ path('patient-index') }}">Patients <i class="bi bi-chevron-right"></i></a>
  4.         {% set current = app.request.get('_route') %}
  5.         <a class="text-white text-decoration-none" href="{{ path( current ~ '.fr' ) }}">Français</a>
  6.     </div>
  7. </nav>