custom/apps/AtlKatanaTheme/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_meta_tags %}
  3.     {{ parent() }}
  4.     {% block layout_head_meta_tags_custom_html %}
  5.         {% set customHTML= theme_config('atl-custom-html') %}
  6.         {% apply spaceless %}
  7.             {% if customHTML and customHTML is not empty %}
  8.                 {{ customHTML|raw }}
  9.             {% endif %}
  10.         {% endapply %}
  11.     {% endblock %}
  12. {% endblock %}
  13. {% block layout_head_stylesheet %}
  14.     {{ parent() }}
  15.     {% block layout_head_stylesheet_custom_css %}
  16.         {% set customCSS = theme_config('atl-custom-css') %}
  17.         {% if customCSS and customCSS is not empty %}
  18.             <style>{% apply spaceless %}
  19.                 {{ customCSS|raw }}
  20.                 {% endapply %}</style>
  21.         {% endif %}
  22.     {% endblock %}
  23. {% endblock %}