<nav class="navbar navbar-expand-lg navbar-dark navbar-togglable fixed-top">
<div class="container">
<!-- Brand -->
<a class="navbar-brand" href="{{ path('home') }}">
<img src="{{ asset('uploads/logos/logo.png') }}" class="navbar-brand-img" alt="...">
</a>
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="fe fe-x"></i>
</button>
<!-- Navigation -->
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="{{ path('home') }}" aria-haspopup="true" aria-expanded="false">
Accueil
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ path('post_details',{'slug':getPostByTitle('TLDI Logistique Services').slug }) }}" aria-haspopup="true" aria-expanded="false">
Qui sommes-nous ?
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ path('service_details',{'slug':getPostByTitle('Nos Services').slug}) }}" aria-haspopup="true" aria-expanded="false">
Nos services
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDocumentation" data-bs-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Nos Tarifs
</a>
<div class="dropdown-menu dropdown-menu-md" aria-labelledby="navbarDocumentation">
<div class="list-group list-group-flush">
{% if navChild(3) is not null %}
{% set children = navChild(3) %}
{% for child in children %}
<a class="list-group-item" href="{{ path('price',{'slug':child.slug}) }}">
<!-- Icon -->
<div class="icon icon-sm text-muted">
<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>
<!-- Content -->
<div class="ms-4">
<!-- Heading -->
<h6 class="fw-bold text-uppercase text-muted mb-0">
{{ child.name }}
</h6>
</div>
</a>
{% endfor %}
{% endif %}
</div>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ path('faq',{'slug':getPostByTitle('Questions – Réponses').slug }) }}" aria-haspopup="true" aria-expanded="false">
FAQ
</a>
</li>
</ul>
<!-- Button -->
<a class="navbar-btn btn btn-sm btn-warning lift ms-auto" href="{{ path('app_contact_new') }}">
Nous contacter
</a>
</div>
</div>
</nav>