custom/plugins/MoorlFoundation/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.     {% if shopware.config.MoorlFoundation.config.fontawesome %}
  5.         <link rel="stylesheet" href="{{ asset('bundles/moorlfoundation/storefront/css/font-awesome-free.css') }}">
  6.     {% endif %}
  7.     {% if shopware.config.MoorlFoundation.config.animate %}
  8.         <link rel="stylesheet" href="{{ asset('bundles/moorlfoundation/storefront/css/animate.css') }}">
  9.         <script type="application/json" id="moorlFoundationAnimateConfig">{
  10.             "animateIn": "{{ shopware.config.MoorlFoundation.config.animateIn|replace({"\n":';',"\r":';'}) }}",
  11.             "animateOut": "{{ shopware.config.MoorlFoundation.config.animateOut|replace({"\n":';',"\r":';'}) }}",
  12.             "hover": "{{ shopware.config.MoorlFoundation.config.hover|replace({"\n":';',"\r":';'}) }}"
  13.         }</script>
  14.     {% endif %}
  15. {% endblock %}