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

6 lines
221 B
HTML
Raw Normal View History

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