custom/plugins/zenitPlatformStratus/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.     <style data-plugin="zenitStratus">
  5.         {% if theme_config('zen-layout-bg-img') %}
  6.             body {
  7.                 background-image: url("{{ theme_config('zen-layout-bg-img') }}");
  8.             }
  9.         {% endif %}
  10.     </style>
  11.     {% if config('zenitPlatformStratus.config.customCssActive') %}
  12.         <style data-plugin="zenitStratusCustomCss">
  13.             {{ config('zenitPlatformStratus.config.customCss')|raw }}
  14.         </style>
  15.     {% endif %}
  16. {% endblock %}
  17. {% block layout_head_android %}
  18.     <link rel="icon"
  19.           sizes="192x192"
  20.           href="{{ theme_config('sw-logo-share') }}">
  21.     <meta name="theme-color"
  22.           content="{{ theme_config('zen-meta-theme-color') }}"/>
  23. {% endblock %}