custom/plugins/zenitPlatformFeaturesBar/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_features_bar_css %}
  5.         {% set zenFeaturesBar = context.context.extensions['zenitPlatformFeaturesBar'].config %}
  6.         {% if zenFeaturesBar.customCSS %}
  7.             <style type="text/css" data-plugin="zenitPlatformFeaturesBar">
  8.                 {{ zenFeaturesBar.customCSS|raw }}
  9.             </style>
  10.         {% endif %}
  11.     {% endblock %}
  12. {% endblock %}