templates/_includes/_footer.html.twig line 1

  1. <div class="container py-4 d-flex flex-wrap align-items-center justify-content-center">
  2.     <ul class="nav col-12 col-md-auto justify-content-center mb-md-0 footer-menu">
  3.         <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>
  4.         <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>
  5.         <div class="dropdown">
  6.             <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">
  7.                 Nos domaines d'intervention
  8.             </a>
  9.             <ul class="dropdown-menu">
  10.                 {% for cat in categories %}
  11.                     {% if cat.id == 2 %}
  12.                         {% for page in cat.pages|sort((a, b) => a.name <=> b.name) %}
  13.                             <li>
  14.                                 <a class="dropdown-item"
  15.                                     href="/{{ cat.slug }}/{{ page.slug }}">{{ page.title|raw }}</a>
  16.                             </li>
  17.                         {% endfor %}
  18.                     {% endif %}
  19.                 {% endfor %}
  20.             </ul>
  21.         </div>
  22.         <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>
  23.         <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>
  24.         <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>
  25.         <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>
  26.         <!-- Modal -->
  27.         <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>
  28.         <div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
  29.             <div class="modal-dialog">
  30.                 <div class="modal-content">
  31.                     <div class="modal-header">
  32.                         <h1 class="modal-title fs-5" id="exampleModalLabel">Mentions légales</h1>
  33.                         <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  34.                     </div>
  35.                     <div class="modal-body">
  36.                         {{ settings[0].siteMentionslegales|replace({'<div>': '', '</div>': '',})|raw }}
  37.                     </div>
  38.                 </div>
  39.             </div>
  40.         </div>
  41.     </ul>
  42. </div>