custom/plugins/zenitPlatfromGravity/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="zenitGravity">
  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('zenitPlatformGravity.config.customCssFilesActive') %}
  12.         {{ config('zenitPlatformGravity.config.customCssFiles')|raw }}
  13.     {% endif %}
  14.     {% if config('zenitPlatformGravity.config.customCssActive') %}
  15.         <style data-plugin="zenitGravityCustomCss">
  16.             {{ config('zenitPlatformGravity.config.customCss')|raw }}
  17.         </style>
  18.     {% endif %}
  19. {% endblock %}
  20. {% block layout_head_android %}
  21.     <link rel="icon"
  22.           sizes="192x192"
  23.           href="{{ theme_config('sw-logo-share') }}">
  24.     <meta name="theme-color"
  25.           content="{{ theme_config('zen-meta-theme-color') }}"/>
  26. {% endblock %}