templates/footer/footer.html.twig line 1

Open in your IDE?
  1. {% include 'footer/newsletter.html.twig' %}
  2. <footer class="page-footer pt-5">
  3.     <div class="container">
  4.         <div class="row text-center text-sm-left">
  5.             <div class="offset-3 offset-sm-0 col-6 col-sm-3 col-lg-2">
  6.                 <img class="img-fluid mb-4" src="{{ asset('uploads/logo/logo.png') }}" alt="Logo">
  7.             </div>
  8.             <div class="col-12 offset-lg-1 col-sm-3 footer-col">
  9.                 <p class="font-weight-bold">La marque SOGAL</p>
  10.                 <ul class="list-unstyled">
  11.                     {# START : PAGE Template #}
  12.                         {% include 'footer/templateFooterPages.html.twig' %}
  13.                     {# FIN : PAGE Template #}
  14.                     <li>
  15.                         <a href="{{ path('article_list') }}">Magazine</a>
  16.                     </li>
  17.                     <li>
  18.                         <a href="{{ path('artisans') }}">Trouver un artisan</a>
  19.                     </li>
  20.                     <li>
  21.                         <a href="{{ path('contact_generique') }}">Nous contacter</a>
  22.                     </li>
  23.                 </ul>
  24.             </div>
  25.             <div class="col-12 col-sm-3 footer-col">
  26.                 <p class="font-weight-bold">Solutions aménagement</p>
  27.                 <ul class="list-unstyled">
  28.                     {# START : PAGE Template #}
  29.                         {% include 'footer/familleProduit.html.twig' %}
  30.                     {# FIN : PAGE Template #}
  31.                 </ul>
  32.             </div>
  33.             <div class="col-12 col-sm-3 footer-col">
  34.                 <p class="font-weight-bold">Informations et conseils</p>
  35.                 <ul class="list-unstyled">
  36.                     <li>
  37.                         <a href="{{ path('faq') }}">F.A.Q.</a>
  38.                     </li>
  39.                     <li>
  40.                         <a href="{{ path('communique') }}">Espace presse</a>
  41.                     </li>
  42.                     <li>
  43.                         <a href="{{ path('notice_et_videos') }}">Notices et vidéos</a>
  44.                     </li>
  45.                     <li>
  46.                         <a href="{{ path('enregistrement_garantie') }}">Enregistrement garantie</a>
  47.                     </li>
  48.                     {% if facebook != "" %}
  49.                         <li>
  50.                             <a target="_blank" class="ml-1 " href="{{ facebook }}">
  51.                                 <i class="fab fa-facebook fa-1x"></i> Facebook
  52.                             </a>
  53.                         </li>
  54.                     {% endif %}
  55.                     {% if twitter != "" %}
  56.                         <li>
  57.                             <a target="_blank" class="ml-1 " href="{{ twitter }}">
  58.                                 <i class="fab fa-twitter fa-1x"></i> Twitter
  59.                             </a>
  60.                         </li>
  61.                     {% endif %}
  62.                     {% if pinterest != "" %}
  63.                         <li>
  64.                             <a target="_blank" class="ml-1 " href="{{ pinterest }}">
  65.                                 <i class="fab fa-pinterest fa-1x"></i> Pinterest
  66.                             </a>
  67.                         </li>
  68.                     {% endif %}
  69.                     {% if instagram != "" %}
  70.                         <li>
  71.                             <a target="_blank" class="ml-1 " href="{{ instagram }}">
  72.                                 <i class="fab fa-instagram fa-1x"></i> Instagram
  73.                             </a>
  74.                         </li>
  75.                     {% endif %}
  76.                 </ul>
  77.             </div>
  78.         </div>
  79.         {# ------------------------------ LIGNE DE FIN ------------------------------ #}
  80.         <div class="row d-flex justify-content-between footer-tag px-3 px-sm-0 px-lg-0">
  81.             <div class="copyright">
  82.                 <span>Copyright &copy; {{ "now"|date('Y') }} Sogal</span>
  83.                 <ul class="list-unstyled d-flex flex-row">
  84.                     <li class="mr-3">
  85.                         <a href="{{ path('mentions_legales') }}">Mentions légales</a>
  86.                     </li>
  87.                     <li class="mr-3">
  88.                         <a href="{{ path('donnees_personnelles') }}">Données personnelles</a>
  89.                     </li>
  90.                     <li class="mr-3">
  91.                         <a href="{{ path('cookies') }}">Cookies</a>
  92.                     </li>
  93.                     <li class="mr-3">
  94.                         <a href="{{ path('cgv') }}">CGV</a>
  95.                     </li>
  96.                 </ul>
  97.             </div>
  98.             <div>
  99.                 <a class="text-cmai mb-0" href="http://www.cmai-groupe.com/" target="_blank">Une marque du Groupe</a><br />
  100.                 <a href="http://www.cmai-groupe.com/" target="_blank">
  101.                     <img class="logo-cmai" src="{{ asset('assets/images/cmai-logo.png') }}" alt="Logo">
  102.                 </a>
  103.             </div>
  104.         </div>
  105.     </div>
  106. </footer>
  107. {# {% include 'footer/fixe.html.twig' %} #}
  108. {% include 'footer/tracking.html.twig' %}