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

Open in your IDE?
  1. {% extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_body_inner %}
  3.     {% block base_noscript %}
  4.         <noscript class="noscript-main">
  5.             <div style="position:fixed;z-index:1000;width:100%;">
  6.                 {% sw_include '@Storefront/storefront/utilities/alert.html.twig' with {
  7.                     type: 'info',
  8.                     content: 'general.noscriptNotice'|trans|sw_sanitize
  9.                 } %}
  10.             </div>
  11.         </noscript>
  12.     {% endblock %}
  13.     {% block base_header %}
  14.         {{ parent() }}
  15.     {% endblock %}
  16.     {% block base_navigation %}{% endblock %}
  17.     {% block base_offcanvas_navigation %}
  18.         {% if page.header.navigation %}
  19.             <div class="d-none js-navigation-offcanvas-initial-content{% if context.salesChannel.navigationCategoryId == page.header.navigation.active.id %} is-root{% endif %}">
  20.                 {% block base_offcanvas_navigation_inner %}
  21.                     {% sw_include '@Storefront/storefront/layout/navigation/offcanvas/navigation.html.twig' with { navigation: page.header.navigation } %}
  22.                 {% endblock %}
  23.             </div>
  24.         {% endif %}
  25.     {% endblock %}
  26.     {% block base_main %}
  27.         {{ parent() }}
  28.     {% endblock %}
  29.     {% block base_footer %}
  30.         {{ parent() }}
  31.     {% endblock %}
  32.     {% sw_include '@FroshProductCompare/storefront/component/compare/compare-float.html.twig' %}
  33. {% endblock %}
  34. {% block base_script_router %}
  35.     {{ parent() }}
  36.     <script>
  37.         window.router['frontend.compare.offcanvas'] = '{{ path('frontend.compare.offcanvas') }}';
  38. window.router['frontend.compare.content'] = '{{ path('frontend.compare.content') }}';
  39.     </script>
  40. {% endblock %}