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

  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_body %}
  3.     {% set blurElysiumBreakpoints = {
  4.         mobile: 'xs',
  5.         tablet: 'md',
  6.         desktop: 'xl'
  7.     } %}
  8.     {% if config('BlurElysiumSlider.breakpoints') %}
  9.         {% set blurElysiumBreakpoints = blurElysiumBreakpoints|merge(
  10.             config('BlurElysiumSlider.breakpoints')
  11.         ) %}
  12.     {% endif %}
  13.     {{ parent() }}
  14. {% endblock %}