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 class_icon = '' %}
  42.     {% set social_bandeau = '' %}
  43.     {% if theme_option.actifpictosinfo == 0 %}
  44.         {% set class_icon = 'd-md-none' %}
  45.     {% endif %}
  46.     {% if theme_option.showreseauxsociaux == 1 %}
  47.         {% set social_bandeau = 'reseau_bandeau' %}
  48.     {% endif %}
  49.     {% set infos_items_flex = '' %}
  50.     {% if theme_option.showreseauxsociaux == 1 %}
  51.         {% set infos_items_flex = 'flex-md-column align-items-md-end align-items-center pr-md-3' %}
  52.     {% else %}
  53.         {% set infos_items_flex = 'flex-column align-items-end' %}
  54.     {% endif %}
  55.     {% if theme_option.headerstyle == null or theme_option.headerstyle == 'header1' %}
  56.         {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/header/modeles/_header1.html.twig')}}
  57.     {% elseif (theme_option.headerstyle == 'header2') %}
  58.         {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/header/modeles/_header2.html.twig')}}
  59.     {% elseif (theme_option.headerstyle == 'header3') %}
  60.         {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/partials/header/modeles/_header3.html.twig')}}
  61.     {% endif %}
  62. {% endif %}