PCv5/app/templates/base/scripts.html

7 lines
229 B
HTML
Raw Normal View History

{% for s in scripts %}
<script type="text/javascript" src={{url_for('static', filename=s)}}></script>
{% endfor %}
2023-07-15 20:36:44 +02:00
{% for m in modules %}
<script type="module" src={{url_for('static', filename=m)}}></script>
{% endfor %}