custom/plugins/zenitPlatformSphere/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 zen_layout_head_styles %}
  5.         {% if theme_config('zen-layout-bg-img') %}
  6.             <style data-plugin="zenitSphere">{% apply spaceless %}
  7.                 body {
  8.                     background-image: url("{{ theme_config('zen-layout-bg-img') }}");
  9.                 }
  10.             {% endapply %}</style>
  11.         {% endif %}
  12.     {% endblock %}
  13.     {% block zen_layout_head_custom_css_files %}
  14.         {% if config('zenitPlatformSphere.config.customCssFilesActive') %}
  15.             {{ config('zenitPlatformSphere.config.customCssFiles')|raw }}
  16.         {% endif %}
  17.     {% endblock %}
  18.     {% block zen_layout_head_custom_css_styles %}
  19.         {% if config('zenitPlatformSphere.config.customCssActive') %}
  20.             <style data-plugin="zenitSphereCustomCss">{% apply spaceless %}
  21.                 {{ config('zenitPlatformSphere.config.customCss')|raw }}
  22.                 {% endapply %}</style>
  23.         {% endif %}
  24.     {% endblock %}
  25. {% endblock %}
  26. {% block layout_head_apple %}
  27.     {{ parent() }}
  28.     {% block zen_layout_head_android %}
  29.         {% if theme_config('sw-logo-share') %}
  30.             <link rel="icon"
  31.                   sizes="192x192"
  32.                   href="{{ theme_config('sw-logo-share') }}">
  33.         {% endif %}
  34.         <meta name="theme-color"
  35.               content="{{ theme_config('zen-meta-theme-color') }}"/>
  36.     {% endblock %}
  37. {% endblock %}