templates/front/navbar.html.twig line 1

Open in your IDE?
  1. <nav class="navbar navbar-expand-lg navbar-dark navbar-togglable fixed-top">
  2.     <div class="container">
  3.         <!-- Brand -->
  4.         <a class="navbar-brand" href="{{ path('home') }}">
  5.             <img src="{{ asset('uploads/logos/logo.png') }}" class="navbar-brand-img" alt="...">
  6.         </a>
  7.         <!-- Toggler -->
  8.         <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
  9.             <span class="navbar-toggler-icon"></span>
  10.         </button>
  11.         <!-- Collapse -->
  12.         <div class="collapse navbar-collapse" id="navbarCollapse">
  13.             <!-- Toggler -->
  14.             <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
  15.                 <i class="fe fe-x"></i>
  16.             </button>
  17.             <!-- Navigation -->
  18.             <ul class="navbar-nav ms-auto">
  19.                 <li class="nav-item">
  20.                     <a class="nav-link" href="{{ path('home') }}" aria-haspopup="true" aria-expanded="false">
  21.                         Accueil
  22.                     </a>
  23.                 </li>
  24.                 <li class="nav-item">
  25.                     <a class="nav-link" href="{{ path('post_details',{'slug':getPostByTitle('TLDI Logistique Services').slug }) }}" aria-haspopup="true" aria-expanded="false">
  26.                         Qui sommes-nous ?
  27.                     </a>
  28.                 </li>
  29.                 <li class="nav-item">
  30.                     <a class="nav-link" href="{{ path('service_details',{'slug':getPostByTitle('Nos Services').slug}) }}" aria-haspopup="true" aria-expanded="false">
  31.                         Nos services
  32.                     </a>
  33.                 </li>
  34.                 <li class="nav-item dropdown">
  35.                     <a class="nav-link dropdown-toggle" id="navbarDocumentation" data-bs-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
  36.                         Nos Tarifs
  37.                     </a>
  38.                     <div class="dropdown-menu dropdown-menu-md" aria-labelledby="navbarDocumentation">
  39.                         <div class="list-group list-group-flush">
  40.                             {% if navChild(3) is not null %}
  41.                             {% set children  = navChild(3) %}
  42.                             {% for child in children %}
  43.                             <a class="list-group-item" href="{{ path('price',{'slug':child.slug}) }}">
  44.                                 <!-- Icon -->
  45.                                 <div class="icon icon-sm text-muted">
  46.                                     <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M8 3v.5A1.5 1.5 0 009.5 5h5A1.5 1.5 0 0016 3.5V3h2a2 2 0 012 2v16a2 2 0 01-2 2H6a2 2 0 01-2-2V5a2 2 0 012-2h2z" fill="#000" opacity=".3"/><path d="M11 2a1 1 0 012 0h1.5a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H11z" fill="#000"/><rect fill="#000" opacity=".3" x="7" y="10" width="5" height="2" rx="1"/><rect fill="#000" opacity=".3" x="7" y="14" width="9" height="2" rx="1"/></g></svg>                </div>
  47.                                 <!-- Content -->
  48.                                 <div class="ms-4">
  49.                                     <!-- Heading -->
  50.                                     <h6 class="fw-bold text-uppercase text-muted mb-0">
  51.                                        {{ child.name }}
  52.                                     </h6>
  53.                                 </div>
  54.                             </a>
  55.                             {% endfor %}
  56.                             {% endif %}
  57.                         </div>
  58.                     </div>
  59.                 </li>
  60.                 <li class="nav-item">
  61.                     <a class="nav-link" href="{{ path('faq',{'slug':getPostByTitle('Questions – Réponses').slug }) }}" aria-haspopup="true" aria-expanded="false">
  62.                         FAQ
  63.                     </a>
  64.                 </li>
  65.             </ul>
  66.             <!-- Button -->
  67.             <a class="navbar-btn btn btn-sm btn-warning lift ms-auto" href="{{ path('app_contact_new') }}">
  68.                 Nous contacter
  69.             </a>
  70.         </div>
  71.     </div>
  72. </nav>