templates/_includes/_footer.html.twig line 1

  1. <footer class="page-footer">
  2.     <div class="container">
  3.         <div class="row d-flex justify-content-center">
  4.             <div class="col-lg-8 col-sm-12 footer">
  5.                 <a {% if pageTitle is defined and pageTitle != null and pageTitle == 'home' %}class="active"{% endif %} href="{{ path('app_home') }}">Le Forum</a>
  6.                 <a {% if pageTitle is defined and pageTitle != null and pageTitle == 'programme' %}class="active"{% endif %} href="{{ path('app_programme') }}">Programme & infos Pratiques</a>
  7.                 <a {% if pageTitle is defined and pageTitle != null and pageTitle == 'partenaires' %}class="active"{% endif %} href="{{ path('app_partenaires') }}">Partenaires</a>
  8.                 <a {% if pageTitle is defined and pageTitle != null and pageTitle == 'offres' or pageTitle == 'offre-detail' %}class="active"{% endif %} href="{{ path('app_offres') }}">Offres</a>
  9.                 <a {% if pageTitle is defined and pageTitle != null and pageTitle == 'contact' %}class="active"{% endif %} href="{{ path('app_contact') }}">Contact</a>
  10.             </div>
  11.         </div>
  12.         <div class="row pt-1">
  13.             <div class="col text-center">
  14.                 <!-- Button trigger modal -->
  15.                 <a href="#" class="footer-title" data-bs-toggle="modal" data-bs-target="#exampleModal">
  16.                     Mentions Légales
  17.                 </a>
  18.                 <!-- Modal -->
  19.                 <div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
  20.                     <div class="modal-dialog">
  21.                     <div class="modal-content">
  22.                         <div class="modal-header">
  23.                         <h1 class="modal-title fs-4" id="exampleModalLabel">
  24.                             <span class="color1">Mentions</span> <span class="color2 bold">Légales</span>
  25.                         </h1>
  26.                         <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  27.                         </div>
  28.                         <div class="modal-body text-dark small">
  29.                             {{ settings[0].siteMentionslegales|replace({'<div>': '', '</div>': '',})|raw }}
  30.                         </div>
  31.                         
  32.                     </div>
  33.                     </div>
  34.                 </div>
  35.             </div>
  36.         </div>
  37.     </div>
  38. </footer>