custom/plugins/WolfPlatformConversionTopbar/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {%  sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_body_inner %}
  3.     {%  set  WolfACT =   config('WolfPlatformConversionTopbar.config')  %}
  4.     {%  if WolfACT.active %}
  5.         <style type="text/css">
  6.             i.fas {color: {{ WolfACT.iconcolor }};font-size: {{ WolfACT.iconsize }}px;font-style: normal;}
  7.             .WCB-Item {color: {{ WolfACT.fontcolor }};font-size: {{ WolfACT.fontsize }}px; }
  8.             .WCB-Item a {color: {{ WolfACT.fontcolor }};}
  9.         </style>
  10.         <div class="CB-container {%  if WolfACT.sticky == "true" %}sticky-top{%  endif %}" style="background: {{ WolfACT.backgroundcolor }};border-bottom: {{ WolfACT.bordersize }}px solid {{ WolfACT.bordercolor }}">
  11.              <div class="wcon-bar" style="height: {{ WolfACT.barheight }}px;line-height: {{ WolfACT.barheight }}px;" >
  12.                     <p class="WCB-Item {{ WolfACT.align1 }} {% if WolfACT.elementcount == "ctp-3" %} {{ WolfACT.itemanimate }}1-3 {% elseif WolfACT.elementcount == "ctp-4" %}{{ WolfACT.itemanimate }}1-4 {% elseif WolfACT.elementcount == "ctp-2" %}{{ WolfACT.itemanimate }}1-2 {%  endif %} {{ WolfACT.elementcount }}" >
  13.                         {% if "wolf-conversion-topbar.message.link1"|trans|sw_sanitize != "" %}<a href="{{ "wolf-conversion-topbar.message.link1"|trans|sw_sanitize }}">{%  endif %}
  14.                         <i class="fas {% if WolfACT.icon1 != "manual" %}{{ WolfACT.icon1 }}{%  else %}{{  WolfACT.manual1 }}{%  endif %} {{ WolfACT.ianimate1 }}" aria-hidden="true"></i>&nbsp; {{ "wolf-conversion-topbar.message.element1"|trans|sw_sanitize }}
  15.                             {% if "wolf-conversion-topbar.message.link1"|trans|sw_sanitize != "" %}</a>{%  endif %}
  16.                     </p>
  17.                  {%  if WolfACT.elementcount == "ctp-2" or WolfACT.elementcount == "ctp-3" or WolfACT.elementcount == "ctp-4" %}
  18.                         <p class="WCB-Item {{ WolfACT.align2 }} {% if WolfACT.elementcount == "ctp-3" %} {{ WolfACT.itemanimate }}2-3 {% elseif WolfACT.elementcount == "ctp-4" %}{{ WolfACT.itemanimate }}2-4 {% elseif WolfACT.elementcount == "ctp-2" %}{{ WolfACT.itemanimate }}2-2 {%  endif %}
  19.                     {{ WolfACT.elementcount }}">
  20.                             {% if "wolf-conversion-topbar.message.link2"|trans|sw_sanitize != "" %}<a href="{{ "wolf-conversion-topbar.message.link2"|trans|sw_sanitize }}">{%  endif %}
  21.                             <i class="fas {% if WolfACT.icon2 != "manual" %}{{ WolfACT.icon2 }}{%  else %}{{  WolfACT.manual2 }}{%  endif %} {{ WolfACT.ianimate2 }}" aria-hidden="true"></i>&nbsp; {{ "wolf-conversion-topbar.message.element2"|trans|sw_sanitize }}
  22.                                 {% if "wolf-conversion-topbar.message.link2"|trans|sw_sanitize != "" %}</a>{%  endif %}
  23.                         </p>
  24.                     {%  endif %}
  25.                     {%  if WolfACT.elementcount == "ctp-3" or WolfACT.elementcount == "ctp-4" %}
  26.                              <p class="WCB-Item {{ WolfACT.align3 }} {% if WolfACT.elementcount == "ctp-3" %} {{ WolfACT.itemanimate }}3-3 {% elseif WolfACT.elementcount == "ctp-4" %}{{ WolfACT.itemanimate }}3-4 {%  endif %}{{ WolfACT.elementcount }}" >
  27.                                 {% if "wolf-conversion-topbar.message.link3"|trans|sw_sanitize != "" %}<a href="{{ "wolf-conversion-topbar.message.link3"|trans|sw_sanitize }}">{%  endif %}
  28.                                     <i class="fas {% if WolfACT.icon3 != "manual" %}{{ WolfACT.icon3 }}{%  else %}{{  WolfACT.manual3 }}{%  endif %} {{ WolfACT.ianimate3 }}" aria-hidden="true"></i>&nbsp; {{ "wolf-conversion-topbar.message.element3"|trans|sw_sanitize }}
  29.                                 {% if "wolf-conversion-topbar.message.link3"|trans|sw_sanitize != "" %}</a>{%  endif %}
  30.                             </p>
  31.                     {%  endif %}
  32.                     {%  if WolfACT.elementcount == "ctp-4" %}
  33.                         <p class="WCB-Item {{ WolfACT.align4 }} {{ WolfACT.itemanimate }}4-4 {{ WolfACT.elementcount }}">
  34.                             {% if "wolf-conversion-topbar.message.link4"|trans|sw_sanitize != "" %}<a href="{{ "wolf-conversion-topbar.message.link4"|trans|sw_sanitize }}">{%  endif %}
  35.                                 <i class="fas {% if WolfACT.icon4 != "manual" %}{{ WolfACT.icon4 }}{%  else %}{{  WolfACT.manual4 }}{%  endif %} {{ WolfACT.ianimate4 }}" aria-hidden="true"></i>&nbsp; {{ "wolf-conversion-topbar.message.element4"|trans|sw_sanitize }}
  36.                             {% if "wolf-conversion-topbar.message.link4"|trans|sw_sanitize != "" %}</a>{%  endif %}
  37.                         </p>
  38.                     {%  endif %}
  39.             </div>
  40.         </div>
  41.     {%  endif %}
  42.     {{ parent () }}
  43. {%  endblock %}