templates/website/_footer.html.twig line 1

Open in your IDE?
  1. <footer class="bg-yellow">
  2. <div class="container pt-5">
  3. <div class="row py-5">
  4. <div class="col-lg-3 col-sm-12">
  5. <a class="navbar-brand-nibuco text-center my-0 mr-md-auto d-flex" href="{{ path('accueil_vitrine') }}">
  6. <img src="{{ asset('assets/imgs/nibuco/nibuco-logo.svg') }}"
  7. alt="Logo entreprise de livraison Nibuco"
  8. class="logo-footer">
  9. <span class="titre-logo ml-3">Nibuco</span>
  10. </a>
  11. <p class="text-muted">Faites partie de la communauté grandissante Nibuco en nous suivant sur nos réseaux sociaux ! Nous partageons régulièrement des actualités, des astuces... Alors pour ne rien manquer, rejoignez-nous !</p>
  12. {% block footerother %}
  13. <ul class="list-inline mt-4">
  14. <li class="list-inline-item">
  15. <a href="https://www.facebook.com/livraison.nibuco" target="_blank" title="facebook">
  16. <img width="30px" height="30px" src="{{ asset('assets/imgs/nibuco/fb.svg') }}" alt="">
  17. </a>
  18. </li>
  19. <li class="list-inline-item">
  20. <a href="https://www.instagram.com/livraison.nibuco/" target="_blank" title="instagram">
  21. <img width="30px" height="30px" src="{{ asset('assets/imgs/nibuco/instagram.svg') }}" alt="">
  22. </a>
  23. </li>
  24. </ul>
  25. {% endblock %}
  26. </div>
  27. <div class="offset-lg-1 col-lg-4 col-sm-12">
  28. <h6 class="font-weight-bold mb-4 mt-4">Pour plus d’informations</h6>
  29. <ul class="list-unstyled mb-0">
  30. <li class="mb-2"><a href="{{ path('devenir_coursier_vitrine') }}" class="text-muted">Devenir livreur</a></li>
  31. <li class="mb-2"><a href="{{ path('engagements_vitrine') }}" class="text-muted">Nos engagements</a></li>
  32. <li class="mb-2"><a href="{{ path('a_propos_vitrine') }}" class="text-muted">À propos</a></li>
  33. <li class="mb-2"><a href="{{ path('contact_vitrine') }}" class="text-muted">Contact</a></li>
  34. <li class="mb-2"><a href="{{ path('app_login') }}" class="text-muted">Espace membre</a></li>
  35. </ul>
  36. </div>
  37. <div class="offset-lg-1 col-lg-3 col-sm-12">
  38. <h6 class="font-weight-bold mb-4 mt-4">Où nous retrouver</h6>
  39. <ul class="list-unstyled mb-0">
  40. <li class="mb-2"><a href="#" class="text-muted">Paris</a></li>
  41. <li class="mb-2"><a href="#" class="text-muted">Lyon</a></li>
  42. <li class="mb-2"><a href="#" class="text-muted">Marseille</a></li>
  43. <li class="mb-2"><a href="#" class="text-muted">Coming Soon</a></li>
  44. </ul>
  45. </div>
  46. </div>
  47. </div>
  48. <!-- Copyrights -->
  49. <div class="bg-red text-yellow">
  50. <div class="container">
  51. <div class="row">
  52. <div class="col-lg-6 col-xs-12 text-left">
  53. <p class="text-sub-footer mb-0 py-2">Copyright © 2022 NIBUCO. All rights reserved.</p>
  54. </div>
  55. <div class="col-lg-6 col-xs-12 text-right">
  56. <p class="text-sub-footer mb-0 py-2">
  57. <a class="text-yellow" href="{{ path('mentions_legal_vitrine') }}">Mentions Légales</a> -
  58. <a class="text-yellow" href="{{ path('politique_confidentialite_vitrine') }}">Politique de confidentialité</a> -
  59. <a class="text-yellow" href="{{ path('cgu_vitrine') }}">CGU</a> -
  60. <a class="text-yellow" href="{{ path('gestion_cookie_vitrine') }}">Gestion des cookies</a>
  61. </p>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </footer>