templates/_includes/_footer.html.twig line 1

  1. <div class="container-fluid footer">
  2.     <div class="container py-4">
  3.         <div class="row">
  4.             <div class="col">
  5.                 <a href="{{ path('app_home') }}" class="active">Le Salon</a>
  6.                 <a href="{{ path('app_programme') }}">Programme</a>
  7.                 <a href="{{ path('app_entreprises') }}">Entreprises</a>
  8.                 <a href="{{ path('app_offres') }}">Offres</a>
  9.                 <a href="{{ path('app_contact') }}">Contact</a>
  10.                 <a href="{{ path('app_mentions_legales') }}">Mentions légales</a>
  11.                 {% if settings[0].siteFacebook is defined and settings[0].siteFacebook != null %}
  12.                     <a href="{{ settings[0].siteFacebook }}" class="p-0">
  13.                         <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path fill="currentColor" d="M14 13.5h2.5l1-4H14v-2c0-1.03 0-2 2-2h1.5V2.14c-.326-.043-1.557-.14-2.857-.14C11.928 2 10 3.657 10 6.7v2.8H7v4h3V22h4v-8.5Z"/></svg>
  14.                     </a>
  15.                 {% endif %}
  16.                 {% if settings[0].siteLinkedin is defined and settings[0].siteLinkedin != null %}
  17.                     <a href="{{ settings[0].siteLinkedin }}" class="p-0">
  18.                         <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="currentColor" d="M10 .4C4.698.4.4 4.698.4 10s4.298 9.6 9.6 9.6s9.6-4.298 9.6-9.6S15.302.4 10 .4zM7.65 13.979H5.706V7.723H7.65v6.256zm-.984-7.024c-.614 0-1.011-.435-1.011-.973c0-.549.409-.971 1.036-.971s1.011.422 1.023.971c0 .538-.396.973-1.048.973zm8.084 7.024h-1.944v-3.467c0-.807-.282-1.355-.985-1.355c-.537 0-.856.371-.997.728c-.052.127-.065.307-.065.486v3.607H8.814v-4.26c0-.781-.025-1.434-.051-1.996h1.689l.089.869h.039c.256-.408.883-1.01 1.932-1.01c1.279 0 2.238.857 2.238 2.699v3.699z"/></svg>
  19.                     </a>
  20.                 {% endif %}
  21.                 {% if settings[0].siteInstagram is defined and settings[0].siteInstagram != null %}
  22.                     <a href="{{ settings[0].siteInstagram }}" class="p-0">
  23.                         <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 256 256"><path fill="currentColor" d="M176 24H80a56.06 56.06 0 0 0-56 56v96a56.06 56.06 0 0 0 56 56h96a56.06 56.06 0 0 0 56-56V80a56.06 56.06 0 0 0-56-56Zm-48 152a48 48 0 1 1 48-48a48.05 48.05 0 0 1-48 48Zm60-96a12 12 0 1 1 12-12a12 12 0 0 1-12 12Zm-28 48a32 32 0 1 1-32-32a32 32 0 0 1 32 32Z"/></svg>
  24.                     </a>
  25.                 {% endif %}
  26.             </div>
  27.         </div>
  28.         <div class="row mt-4">
  29.             <div class="col pres-link">
  30.                 {% for pres in prescripteurs %}
  31.                     <a href="{{ pres.link }}" target="_blank">
  32.                         <img src="{{ asset('assets/img/prescripteurs/' ~ pres.logo ) }}" alt="{{ pres.title }}" class="img-fluid mx-1" style="max-height: 60px; object-fit: scale-down;">
  33.                     </a>
  34.                 {% endfor %}
  35.             </div>
  36.         </div>
  37.     </div>
  38. </div>