{% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
{% block layout_head_stylesheet %}
{{ parent() }}
{% block zen_layout_head_styles %}
{% if theme_config('zen-layout-bg-img') %}
<style data-plugin="zenitSphere">{% apply spaceless %}
body {
background-image: url("{{ theme_config('zen-layout-bg-img') }}");
}
{% endapply %}</style>
{% endif %}
{% endblock %}
{% block zen_layout_head_custom_css_files %}
{% if config('zenitPlatformSphere.config.customCssFilesActive') %}
{{ config('zenitPlatformSphere.config.customCssFiles')|raw }}
{% endif %}
{% endblock %}
{% block zen_layout_head_custom_css_styles %}
{% if config('zenitPlatformSphere.config.customCssActive') %}
<style data-plugin="zenitSphereCustomCss">{% apply spaceless %}
{{ config('zenitPlatformSphere.config.customCss')|raw }}
{% endapply %}</style>
{% endif %}
{% endblock %}
{% endblock %}
{% block layout_head_apple %}
{{ parent() }}
{% block zen_layout_head_android %}
{% if theme_config('sw-logo-share') %}
<link rel="icon"
sizes="192x192"
href="{{ theme_config('sw-logo-share') }}">
{% endif %}
<meta name="theme-color"
content="{{ theme_config('zen-meta-theme-color') }}"/>
{% endblock %}
{% endblock %}