Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 930 Bytes

markup-tag-scripts.md

File metadata and controls

24 lines (17 loc) · 930 Bytes

{% scripts %}

The {% scripts %} tag inserts JavaScript file references to scripts injected by the application. The tag is commonly defined before the closing BODY tag:

<body>
    ...
    {% scripts %}
</body>

NOTE: This tag should appear once only in a given page cycle to prevent duplicated references.

Injecting scripts

Links to JavaScript files can be programmatically injected in PHP by anything implementing the System\Traits\AssetMaker trait, see the Asset Compiler docs for more information.

You can also inject raw markup to the {% scripts %} tag by using the scripts anonymous placeholder. Use the {% put %} tag in pages or layouts to add content to the placeholder:

{% put scripts %}
    <script type="text/javascript" src="/themes/demo/assets/js/menu.js"></script>
{% endput %}