templates/front/theme1/partials/footer/footer.html.twig line 1

Open in your IDE?
  1. {% set target = ['','_top','_new','_self','_blank','_parent'] %}
  2. {% if theme_option != null  %}
  3.     {% set logoFooter = theme_option.actifLogoFooter %}
  4.     {% set logoPosition = theme_option.positionLogoFooter %}
  5.    
  6.     {% set telFooter = theme_option.actifTelFooter %}
  7.     {% set titreTelFooter = theme_option.actifTitreTelFooter %}
  8.     {% set emailFooter = theme_option.actifEmailFooter %}
  9.     {% set titreEmailFooter = theme_option.actifTitreEmailFooter %}
  10.     {% set adresseFooter = theme_option.actifAdresseFooter %}
  11.     {% set titreAdresseFooter = theme_option.actifTitreAdresseFooter %}
  12.     {% set horairesFooter = theme_option.actifHorairesFooter %}
  13.     {% set titreHorairesFooter = theme_option.actifTitreHorairesFooter %}
  14.     {% set socialFooter = theme_option.actifReseauxSociauxFooter %}
  15.     {% set button1Footer = theme_option.actifBouton1Footer %}
  16.     {% set pictosInfosFooter = theme_option.actifPictosInfoFooter %}
  17.     {% set class_icon = '' %}
  18.     {% if pictosInfosFooter == 0 %}
  19.         {% set class_icon = 'd-md-none' %}
  20.     {% endif %}
  21.     {% set codeqrFooter = theme_option.actifCodeqrFooter %}
  22.     {% set texteFooter = theme_option.actifTexteFooter %}
  23.     {% set nbrContactsInput = theme_option.nbrContactsFooter %}
  24.     {% set logoCopyright = theme_option.actifLogoCopyright %}
  25.     {% set dateCopyright = theme_option.actifDateCopyright %}
  26.     {% set bgTopFooter = theme_option.bgColorTopFooter %}
  27.     {% set colorTopFooter = theme_option.colorTopFooter %}
  28.     {% set bgSubFooter = theme_option.bgColorSubFooter %}
  29.     {% set colorSubFooter = theme_option.colorSubFooter %}
  30.     {% if theme_option.footerstyle == null or theme_option.footerstyle == 'footer1' %}
  31.         {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/footer/modeles/_footer1.html.twig')}}
  32.     {% endif %}
  33.     {% if theme_option.footerstyle == null or theme_option.footerstyle == 'footer2' %}
  34.         {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/footer/modeles/_footer2.html.twig')}}
  35.     {% endif %}
  36.     {% if theme_option.footerstyle == null or theme_option.footerstyle == 'footer3' %}
  37.         {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/footer/modeles/_footer3.html.twig')}}
  38.     {% endif %}
  39. {% endif %}