custom/plugins/KmPitchPrint/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_inner %}
  3.     {{ parent() }}
  4. {% endblock %}
  5. {% block layout_head_javascript_jquery %}
  6.     {% set except_webp_routes = [
  7.         'frontend.checkout.cart.page',
  8.         'frontend.wishlist.page',
  9.         'frontend.detail.page'
  10.     ] %}
  11.     {% if activeRoute in except_webp_routes %}
  12.         <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
  13.         <script src="https://pitchprint.io/rsc/js/client.js"></script>
  14.     {% endif %}
  15. {% endblock %}