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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_scroll_up %}
  3.     {% block s360_base_plugin_data %}
  4.         {% if shopware.config.S360BasePlugin %}
  5.             {# smooth scroll #}
  6.             {% sw_include '@Storefront/solution360/base-plugin/_smoothscroll.html.twig' %}
  7.             
  8.             {# sticky header #}
  9.             {% sw_include '@Storefront/solution360/base-plugin/_stickyheader.html.twig' %}
  10.             {# full width force #}
  11.             {#{% sw_include '@Storefront/solution360/base-plugin/_forcefullwidth.html.twig' %}#}
  12.         {% endif %}
  13.     {% endblock %}
  14.     
  15.     {{ parent() }}
  16. {% endblock %}