2023-12-29 21:44:09 +00:00
|
|
|
{% if static.scripts | length >= 1 +%}
|
|
|
|
|
|
|
|
<!-- Scripts -->
|
|
|
|
|
|
|
|
{% for _, script in static.scripts | items %}
|
|
|
|
{# Load scripts at the bottom by default #}
|
|
|
|
{% if not script.place_in_head | default(False) %}
|
2023-12-29 03:14:10 +00:00
|
|
|
<script
|
2023-12-29 21:44:09 +00:00
|
|
|
src="{{ script.src }}"
|
|
|
|
{{- 'integrity="' + script.integrity + '"' if script.integrity else omit }}
|
|
|
|
{{- 'crossorigin="' + script.crossorigin + '"' if script.integrity else omit }}
|
2023-12-29 03:14:10 +00:00
|
|
|
></script>
|
2023-12-29 21:44:09 +00:00
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2023-12-29 03:14:10 +00:00
|
|
|
{% endif %}
|
2023-12-29 21:44:09 +00:00
|
|
|
|
2023-12-29 03:14:10 +00:00
|
|
|
</body>
|
|
|
|
</html>
|