app/template/default/Block/lm_floating_banner_left.twig line 1

Open in your IDE?
  1. {% if not isMobile(true) %}
  2. <div class="fbnr-wrapper">
  3.   <div class="fbnr">
  4.     {% set leftFbnrs = left_fbnrs() %}
  5.     {% for fbnr in leftFbnrs %}
  6.       {% if (fbnr.fbnr_content is defined and fbnr.fbnr_content != '') %}
  7.         {{ fbnr.fbnr_content | raw }}
  8.       {% endif %}
  9.     {% endfor %}
  10.   </div>
  11.   {% if categoryItemLinks is defined and categoryItemLinks %}
  12.     <div class="category-item-links">
  13.       {{ categoryItemLinks | raw }}
  14.     </div>
  15.   {% endif %}
  16. </div>
  17. <link rel="stylesheet" type="text/css" href="/stylesheets/jquery.fbnr.css?20170629_01">
  18. {% endif %}