templates/_includes/_footer.html.twig line 1
<div class="container py-4 d-flex flex-wrap align-items-center justify-content-center">
<ul class="nav col-12 col-md-auto justify-content-center mb-md-0 footer-menu">
<li><a href="{{ path('app_home') }}" class="nav-link px-4 text-dark text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'home' %}active{% endif %}">Accueil</a></li>
<li><a href="/a-propos/a-propos" class="nav-link px-4 text-dark text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'a-propos' %}active{% endif %}">A propos</a></li>
<div class="dropdown">
<a href="" role="button" class="nav-link px-4 text-dark text-uppercase {% if 'nos-domaines-dintervention' in pathInfo %}active{% endif %}" data-bs-toggle="dropdown" aria-expanded="false">
Nos domaines d'intervention
</a>
<ul class="dropdown-menu">
{% for cat in categories %}
{% if cat.id == 2 %}
{% for page in cat.pages|sort((a, b) => a.name <=> b.name) %}
<li>
<a class="dropdown-item"
href="/{{ cat.slug }}/{{ page.slug }}">{{ page.title|raw }}</a>
</li>
{% endfor %}
{% endif %}
{% endfor %}
</ul>
</div>
<li><a href="/lequipe/equipe" class="nav-link px-4 text-dark text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'equipe' %}active{% endif %}">L'équipe</a></li>
<li><a href="/ventes-immobilieres/ventes" class="nav-link px-4 text-dark text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'ventes' %}active{% endif %}">Ventes immobilières</a></li>
<li><a href="/honoraires/nos-honoraires" class="nav-link px-4 text-dark text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'nos-honoraires' %}active{% endif %}">Honoraires</a></li>
<li><a href="/contact/contactez-nous" class="nav-link px-4 text-dark text-uppercase {% if pageTitle is defined and pageTitle != null and pageTitle == 'contactez-nous' %}active{% endif %}">Contact</a></li>
<!-- Modal -->
<li><a href="" class="nav-link px-4 text-dark text-uppercase" data-bs-toggle="modal" data-bs-target="#exampleModal">Mentions légales</a></li>
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel">Mentions légales</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
{{ settings[0].siteMentionslegales|replace({'<div>': '', '</div>': '',})|raw }}
</div>
</div>
</div>
</div>
</ul>
</div>