pot/author/project/system/views/themes/default/js.html

6 lines
228 B
HTML
Raw Normal View History

2024-01-11 04:35:40 +07:00
{% block js %}
2024-12-16 18:23:15 +07:00
{% for element in javascript }
<script {% if element.src %}src="{{ element.src }}"{% endif %} {% if element.type == "module" %}type="module"{% endif %}>{% element.innerText %}</script>
{% endfor %}
2024-01-11 04:35:40 +07:00
{% endblock %}