templates/_header.html.twig line 1

Open in your IDE?
  1. {# Nav bar #}
  2. <div class="container-fluid header-bg">
  3.     <div class="row pt-3">
  4.         <div class="col">
  5.             <a href="{{ path('app_home') }}" class="text-decoration-none">
  6.                 <img src="{{ asset('assets/img/logo-small.png') }}" alt="Arenes Immo" class="img-fluid d-block mx-auto"
  7.                 style="max-width: 180px; width: 100%;">
  8.             </a>
  9.         </div>
  10.     </div>
  11. </div>
  12. <div class="container-fluid header-bg">
  13.     <div class="container">
  14.         <header class="d-flex flex-wrap align-items-center justify-content-center">
  15.             <ul class="nav col-12 col-md-auto justify-content-center mb-md-0 header-menu">
  16.                 <li><a href="{{ path('app_home') }}" class="nav-link px-4 text-white {% if pageTitle is defined and pageTitle != null and pageTitle == 'home' %}active{% endif %}">Accueil</a></li>
  17.                 <li><a href="{{ path('app_about') }}" class="nav-link px-4 text-white {% if pageTitle is defined and pageTitle != null and pageTitle == 'about' %}active{% endif %}">Qui sommes-nous ?</a></li>
  18.                 <li><a href="{{ path('app_estimation') }}" class="nav-link px-4 text-white {% if pageTitle is defined and pageTitle != null and pageTitle == 'estimation' %}active{% endif %}">Estimation</a></li>
  19.                 <li><a href="{{ path('app_honoraires') }}" class="nav-link px-4 text-white {% if pageTitle is defined and pageTitle != null and pageTitle == 'honoraires' %}active{% endif %}">Honoraires</a></li>
  20.                 {# <li><a href="{{ path('app_partenariat') }}" class="nav-link px-4 text-white {% if pageTitle is defined and pageTitle != null and pageTitle == 'partenariat' %}active{% endif %}">Partenariat</a></li> #}
  21.                 <li><a href="{{ path('app_equipe') }}" class="nav-link px-4 text-white {% if pageTitle is defined and pageTitle != null and pageTitle == 'equipe' %}active{% endif %}">L'équipe</a></li>
  22.                 <li><a href="{{ path('app_biens_index') }}" class="nav-link px-4 text-white {% if pageTitle is defined and pageTitle != null and pageTitle == 'biens' %}active{% endif %}">Nos biens</a></li>
  23.                 <li><a href="{{ path('app_contact') }}" class="nav-link px-4 text-white {% if pageTitle is defined and pageTitle != null and pageTitle == 'contact' %}active{% endif %}">Contact</a></li>
  24.             </ul>
  25.         </header>
  26.     </div>
  27. </div>