custom/plugins/UltraStyler/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 %}
  3.     {% set ultrastyleeditor = config('UltraStyler.config') %} 
  4.     {% if ultrastyleeditor.active %}
  5.         {% if ultrastyleeditor.activejquery %}
  6.             <script>{{ ultrastyleeditor.myjquery|raw }}</script>
  7.         {% endif %}
  8.         
  9.         {% if ultrastyleeditor.activescriptbody %}
  10.             {{ ultrastyleeditor.myjavatagsbody|raw }}
  11.         {% endif %}
  12.         
  13.     {% endif %}
  14.       {{ parent() }}
  15.      
  16.     {% endblock %}
  17.     
  18.