custom/plugins/RHWebBasicTheme/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 layout_head_includes %}
  5.         {% sw_include '@Storefront/storefront/rhweb-custom/snippets/rhweb-background-images.html.twig' %}
  6.     {% endblock %}
  7.     {% block layout_head_stylesheet_custom_css %}
  8.         {% if theme_config('rhweb-custom-css') %}
  9.             <style>
  10.                 {{ theme_config('rhweb-custom-css') | raw }}
  11.             </style>
  12.         {% endif %}
  13.     {% endblock %}
  14. {% endblock %}
  15. {% block layout_head_meta_tags %}
  16.     {{ parent() }}
  17.     {% block layout_head_custom_head %}
  18.         {% if theme_config('rhweb-custom-head') %}
  19.             {{ theme_config('rhweb-custom-head') | raw }}
  20.         {% endif %}
  21.     {% endblock %}
  22. {% endblock %}
  23. {% block layout_head_javascript_tracking %}
  24.     {{ parent() }}
  25. {% endblock %}