templates/Context/Common/Banner/_categoryBanner.html.twig line 1

Open in your IDE?
  1. {% if is_mobile() %}
  2.     {% set banners = getCategoryBanners(app.request.locale, 'mobile_top_banner') %}
  3.     {% set width = 330 %}
  4.     {% set height = 550 %}
  5. {% else %}
  6.     {% set banners = getCategoryBanners(app.request.locale, 'desktop_top_banner') %}
  7.     {% set width = 1136 %}
  8.     {% set height = 300 %}
  9. {% endif %}
  10. {% include 'Context/Common/Banner/_banner.html.twig' %}