templates/front/elements/footer.html.twig line 1

  1. <footer>
  2.     <div class="footer">
  3.         <div class="container">
  4.             <div class="row">
  5.                 <div class="w-20">
  6.                     <div class="logo">
  7.                         <a href="{{ path('index') }}"><img src="{{ ('/build/img/logo-backipln.svg') }}" alt="Logo IPLN"
  8.                                                            class="img-responsive" loading="lazy"></a>
  9.                     </div>
  10.                     <div class="social">
  11.                         <a href="https://www.facebook.com/Ipln.fr" class="facebook" target="_blank">
  12.                             <img src="{{ ('/build/img/pictos/facebook.svg') }}" alt="Icône Facebook" loading="lazy">
  13.                         </a>
  14.                         <a href="https://www.youtube.com/channel/UCRYjUMnF6osfYVCwWzHIGkw" class="youtube"
  15.                            target="_blank">
  16.                             <img src="{{ ('/build/img/pictos/youtube.svg') }}" alt="Icône Youtube" loading="lazy">
  17.                         </a>
  18.                         <a href="https://www.instagram.com/images_photo_lyon/" class="instagram" target="_blank">
  19.                             <img src="{{ ('/build/img/pictos/instagram.svg') }}" alt="Icône Instagram" loading="lazy">
  20.                         </a>
  21.                         <a href="https://www.linkedin.com/company/photo-lyon-numérique/" class="linkedin"
  22.                            target="_blank">
  23.                             <img src="{{ ('/build/img/pictos/linkedin.svg') }}" alt="Icone LinkedIn">
  24.                         </a>
  25.                     </div>
  26.                 </div>
  27.                 <div class="w-25">
  28.                     <h3>Liens utiles</h3>
  29.                     <ul>
  30.                         <li>
  31.                             <a href="{{ path('faq') }}">FAQ</a>
  32.                         </li>
  33.                         <li>
  34.                             <a href="{{ path('index') }}">Faire une reprise</a>
  35.                         </li>
  36.                         <li>
  37.                             <a href="https://ipln.fr/">Acheter neuf</a>
  38.                         </li>
  39.                         <li>
  40.                             <a href="https://ipln.fr/797-occasion">Acheter d'occasion</a>
  41.                         </li>
  42.                         <li>
  43.                             <a href="https://ipln.fr/content/53-promotions-ipln">Nos promotions</a>
  44.                         </li>
  45.                     </ul>
  46.                 </div>
  47.                 <div class="w-25">
  48.                     <h3>IPLN</h3>
  49.                     <ul>
  50.                         <li>
  51.                             <a href="https://ipln.fr/content/6-qui-sommes-nous">Qui sommes-nous ?</a>
  52.                         </li>
  53.                         <li>
  54.                             <a href="https://ipln.fr/nous-contacter">Nous contacter</a>
  55.                         </li>
  56.                         <li>
  57.                             <a href="{{ path('mentions') }}">Mentions légales</a>
  58.                         </li>
  59.                         <li>
  60.                             <a href="{{ path('cgu') }}">Conditions générales d’utilisation</a>
  61.                         </li>
  62.                     </ul>
  63.                 </div>
  64.                 <div class="w-25" itemscope itemtype="https://schema.org/Organization">
  65.                     <h3>Informations</h3>
  66.                     <meta content="BACK IPLN" itemprop="name">
  67.                     <ul itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
  68.                         <li><span itemprop="streetAddress">17 PLACE BELLECOUR</span><br>
  69.                             <span itemprop="postalCode">69002</span> <span itemprop="addressLocality">Lyon</span>
  70.                         </li>
  71.                         <li>
  72.                             <a href="tel:0478421555 ">Appelez-nous : <span itemprop="telephone">04 78 42 15 55</span>
  73.                             </a>
  74.                         </li>
  75.                         <li>
  76.                             <a href="mailto:back@ipln.fr">Ecrivez-nous : <span itemprop="email">back@ipln.fr</span></a>
  77.                         </li>
  78.                     </ul>
  79.                 </div>
  80.             </div>
  81.         </div>
  82.     </div>
  83.     <div class="copyright">
  84.         <div class="container">
  85.             <div class="w-100">
  86.                 <p>© Back IPLN {{ date()|date('Y') }}. All Rights Reserved. Made with ♥ by IPLN Team.</p>
  87.             </div>
  88.         </div>
  89.     </div>
  90. </footer>