{% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
{% block layout_head_meta_tags %}
{{ parent() }}
{% block layout_head_meta_tags_custom_html %}
{% set customHTML= theme_config('atl-custom-html') %}
{% apply spaceless %}
{% if customHTML and customHTML is not empty %}
{{ customHTML|raw }}
{% endif %}
{% endapply %}
{% endblock %}
{% endblock %}
{% block layout_head_stylesheet %}
{{ parent() }}
{% block layout_head_stylesheet_custom_css %}
{% set customCSS = theme_config('atl-custom-css') %}
{% if customCSS and customCSS is not empty %}
<style>{% apply spaceless %}
{{ customCSS|raw }}
{% endapply %}</style>
{% endif %}
{% endblock %}
{% endblock %}