PCv5/app/templates/base/scripts.html

7 lines
229 B
HTML

{% for s in scripts %}
<script type="text/javascript" src={{url_for('static', filename=s)}}></script>
{% endfor %}
{% for m in modules %}
<script type="module" src={{url_for('static', filename=m)}}></script>
{% endfor %}