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 config('MoorlFoundation.config.fontawesome') %}
  5.         <!-- Deprecated: Will be completely removed and replaced by SVG -->
  6.         <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous"/>
  7.     {% endif %}
  8.     {% if config('MoorlFoundation.config.animate') %}
  9.         <link rel="stylesheet" href="{{ asset('bundles/moorlfoundation/storefront/css/animate.css') }}">
  10.     {% endif %}
  11.     {% if config('MoorlFoundation.config.moorlAnimation') %}
  12.         <script type="application/javascript">window.moorlAnimation = {{ config('MoorlFoundation.config.moorlAnimation')|json_encode|raw }};</script>
  13.     {% endif %}
  14.     {% if config('MoorlFoundation.config.advancedSearchWidth') %}
  15.         <style>
  16.             :root {
  17.                 --moorl-advanced-search-width: {{ config('MoorlFoundation.config.advancedSearchWidth') }};
  18.             }
  19.         </style>
  20.     {% endif %}
  21. {% endblock %}