custom/plugins/StawCdn/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.     {% if page.header.extensions.cdnConfig.cdnCss and page.header.extensions.cdnConfig.cdnDomain %}
  4.         {% if isHMRMode %}
  5.             {# CSS will be loaded from the JS automatically #}
  6.         {% else %}
  7.             {% set assets = theme_config('assets.css') %}
  8.             {% for file in assets %}
  9.                 {% set path = asset(file, 'theme') %}
  10.                 <link rel="stylesheet" href="{{ path|replace({ (page.header.extensions.cdnConfig.originDomain) : (page.header.extensions.cdnConfig.cdnDomain) }) }}">
  11.             {% endfor %}
  12.         {% endif %}
  13.     {% else %}
  14.         {{ parent() }}
  15.     {% endif %}
  16. {% endblock %}