custom/plugins/zenitPlatformShippingBar/src/Resources/views/storefront/layout/meta.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
  2. {% block layout_head_stylesheet %}
  3.     {{ parent() }}
  4.     {% block zenit_shipping_bar_css %}
  5.         {% set zenShippingBar = context.context.extensions['zenitPlatformShippingBar'].config %}
  6.         {% if zenShippingBar.customCSS %}
  7.             <style type="text/css" data-plugin="zenitPlatformShippingBar">
  8.                 {{ zenShippingBar.customCSS|raw }}
  9.             </style>
  10.         {% endif %}
  11.     {% endblock %}
  12. {% endblock %}