templates/front/includes/_footer.html.twig line 1

  1. <footer id="footer" class="r-footer">
  2.     <div class="r-footer__wrap">
  3.         <div class="r-footer__col r-footer__col--left">
  4.             <svg class="r-footer__logo">
  5.                 <use xlink:href="#logo"></use>
  6.             </svg>
  7.         </div>
  8.         <div class="r-footer__col r-footer__col--center">
  9.             <div class="r-footer__socials">
  10.                 {% if options|length != 0 %}
  11.                     {% if options.twitter_url != "" %}
  12.                         <a href="{{ options.twitter_url }}" class="r-footer__social">
  13.                             <svg class="r-footer__socialIco"><use xlink:href="#twitter"></use></svg>
  14.                         </a>
  15.                     {% endif %}
  16.                     {% if options.facebook_url != "" %}
  17.                         <a href="{{ options.facebook_url }}" class="r-footer__social">
  18.                             <svg class="r-footer__socialIco"><use xlink:href="#facebook"></use></svg>
  19.                         </a>
  20.                     {% endif %}
  21.                     {% if options.instagram_url != "" %}
  22.                         <a href="{{ options.instagram_url }}" class="r-footer__social">
  23.                             <svg class="r-footer__socialIco"><use xlink:href="#instagram"></use></svg>
  24.                         </a>
  25.                     {% endif %}
  26.                     {% if options.linkedin_url != "" %}
  27.                         <a href="{{ options.linkedin_url }}" class="r-footer__social">
  28.                             <svg class="r-footer__socialIco"><use xlink:href="#linkedin"></use></svg>
  29.                         </a>
  30.                     {% endif %}
  31.                 {% endif %}
  32.             </div>
  33.             <address class="r-footer__adresse">
  34.                 ISAAC DE L’ETOILE
  35.                 <br>62 rue du Porteau
  36.                 <br>CS 70019
  37.                 <br>86001 POITIERS Cedex
  38.             </address>
  39.             <a href="{{ path('app_partenaire_list') }}" class="r-footer__btn">Nos Partenaires</a>
  40.         </div>
  41.         <div class="r-footer__col r-footer__col--right">
  42.             <a href="{{ path('app_evenement_list') }}" class="r-footer__btnRight r-footer__btnRight--agenda">
  43.                 <svg class="r-footer__picto">
  44.                     <use xlink:href="#ico-agenda"></use>
  45.                 </svg>
  46.                 Agenda
  47.             </a>
  48.             <a href="{{ path('app_page_simuler_tarif') }}" class="r-footer__btnRight r-footer__btnRight--tarifs">
  49.                 <svg class="r-footer__picto">
  50.                     <use xlink:href="#ico-tarifs"></use>
  51.                 </svg>
  52.                 Tarifs
  53.             </a>
  54.             <a href="{{ path('app_formation_list') }}" class="r-footer__btnRight r-footer__btnRight--formations">
  55.                 <svg class="r-footer__picto">
  56.                     <use xlink:href="#ico-formations"></use>
  57.                 </svg>
  58.                 Formations
  59.             </a>
  60.             <a href="{{ path('app_page_contact') }}" class="r-footer__btnRight r-footer__btnRight--contact">
  61.                 <svg class="r-footer__picto">
  62.                     <use xlink:href="#ico-contact"></use>
  63.                 </svg>
  64.                 Contact
  65.             </a>
  66.         </div>
  67.     </div>
  68.     <div class="r-footer__legals">
  69.         <a href="{{ path('page_front_slug', { slug : 'mentions-legales' }) }}" class="r-footer__legal">Mentions légales</a>
  70.         <a href="{{ path('page_front_slug', { slug : 'ccg-centre-de-formation' }) }}" class="r-footer__legal">CCG Centre de Formation</a>
  71.         <a href="{{ path('page_front_slug', { slug : 'politique-de-confidentialite' }) }}" class="r-footer__legal">Politique de confidentialité</a>
  72.     </div>
  73.     
  74. </footer>