templates/web/customer/jscontainer/parts/js_aggregation.twig line 1

Open in your IDE?
  1. {##
  2.  # Cached JS part
  3.  #
  4.  # @ListChild (list="jscontainer.js", weight="200")
  5.  #}
  6. {% if this.doJSAggregation() %}
  7. {% for file in this.getAggregateJSResources() %}
  8.   <script src="{{ this.getResourceURL(file.url, file) }}"
  9.           {% if file.async %} async{% endif %}
  10.           {% if file.defer %} defer{% endif %}
  11.           {% if file.code %} {{ file.code }}{% endif %}></script>
  12. {% endfor %}
  13. {% endif %}