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

Open in your IDE?
  1. {% set parametre = ParametreSite() %}
  2. {% set target = ['','_top','_new','_self','_blank','_parent'] %}
  3. <input name="menu-handler" id="menu-handler" type="checkbox">
  4. {% if theme_option != null  %}
  5.     {% set tel1 = theme_option.actiftel1 %}
  6.     {% set tel2 = theme_option.actiftel2 %}
  7.     {% set titreTel1 = theme_option.actiftitretel1 %}
  8.     {% set titreTel2 = theme_option.actiftitretel2 %}
  9.     {% set email1 = theme_option.actifemail1 %}
  10.     {% set email2 = theme_option.actifemail2 %}
  11.     {% set titreEmail1 = theme_option.actiftitreemail1 %}
  12.     {% set titreEmail2 = theme_option.actiftitreemail2 %}
  13.     {% set adresse1 = theme_option.actifadresse1 %}
  14.     {% set adresse2 = theme_option.actifadresse2 %}
  15.     {% set titreAdresse1 = theme_option.actiftitreadresse1 %}
  16.     {% set titreAdresse2 = theme_option.actiftitreadresse2 %}
  17.     {% set horaires1 = theme_option.actifhoraires1 %}
  18.     {% set horaires2 = theme_option.actifhoraires2 %}
  19.     {% set titreHoraires1 = theme_option.actiftitrehoraires1 %}
  20.     {% set titreHoraires2 = theme_option.actiftitrehoraires2 %}
  21.     {% set socialHeader = theme_option.actifreseauxsociaux %}
  22.     {% set button1 = theme_option.actifbouton1 %}
  23.     {% set button1Position = theme_option.positionbouton1 %}
  24.     {% set button2 = theme_option.actifbouton2 %}
  25.     {% set button2Position = theme_option.positionbouton2 %}
  26.     {% set button3 = theme_option.actifbouton3 %}
  27.     {% set button3Position = theme_option.positionbouton3 %}
  28.     {# {% set button3PositionAbove = theme_option.position_bouton3_0 %}
  29.     {% set button3PositionRight = theme_option.position_bouton3_1 %}
  30.     {% set button3PositionRightH = theme_option.position_bouton3_2 %} #}
  31.     {% set bgTransparent = theme_option.headerbgtransparent %}
  32.     {% set bgHeader = theme_option.headerbgcolor %}
  33.     {% set colorMenu = theme_option.headertextcolor %}
  34.  {#    {% set colorHoverMenu = theme_option.headertexthovercolor %} #}
  35.     {% set bgHeaderTopTransparent = theme_option.headertopbgtransparent %}
  36.     {% set bgHeaderTop = theme_option.headertopbgcolor %}
  37.     {% set colorHeaderTop = theme_option.headertoptextcolor %}
  38.     {# {% set colorHoverHeaderTop = theme_option.headertoptexthovercolor %} #}
  39.     {% set pictosInfos = theme_option.actifpictosinfo %}
  40.     {% set iconesNavigation = theme_option.actificonesnavigation %}
  41.     {% set recherche = theme_option.actifrecherche %}
  42.     {% set recherchePosition = theme_option.positionrecherche %}
  43.     {% set actifpanier = theme_option.actifpanier %}
  44.     {% set nbrContactsHeader = theme_option.nbrContactsHeader %}
  45.     {% set class_icon = '' %}
  46.     {% set social_bandeau = '' %}
  47.     {% if theme_option.actifpictosinfo == 0 %}
  48.         {% set class_icon = 'd-md-none' %}
  49.     {% endif %}
  50.     {% if theme_option.showreseauxsociaux == 1 %}
  51.         {% set social_bandeau = 'reseau_bandeau' %}
  52.     {% endif %}
  53.     {% set infos_items_flex = '' %}
  54.     {% if theme_option.showreseauxsociaux == 1 %}
  55.         {% set infos_items_flex = 'flex-md-column align-items-md-end align-items-center' %}
  56.     {% else %}
  57.         {% set infos_items_flex = 'flex-column align-items-end' %}
  58.     {% endif %}
  59.     {% set positionBoutonRightHeader = 0 %}
  60.     {% if (button1 and button1Position == 3) or (button2 and button2Position == 3) or (button3 and button3Position == 3) %}
  61.         {% set positionBoutonRightHeader = 1 %}
  62.     {% endif %}
  63.     {% set headerWithBoutonRight = '' %}
  64.     {% if (positionBoutonRightHeader == 1) %}
  65.         {% set headerWithBoutonRight = 'with-bouton-right' %}
  66.     {% endif %}
  67.     {% if theme_option.headerstyle == null or theme_option.headerstyle == 'header1' %}
  68.         {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/header/modeles/_header1.html.twig')}}
  69.     {% elseif (theme_option.headerstyle == 'header2') %}
  70.         {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/header/modeles/_header2.html.twig')}}
  71.     {% elseif (theme_option.headerstyle == 'header3') %}
  72.         {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/header/modeles/_header3.html.twig')}}
  73.     {% elseif (theme_option.headerstyle == 'header4') %}
  74.         {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/header/modeles/_header4.html.twig')}}
  75.     {% endif %}
  76.     
  77. {% endif %}