Files
pot-php/author/project/system/views/themes/default/js.html
2024-12-17 14:22:47 +07:00

6 lines
221 B
HTML
Executable File

{% block js %}
{% for element in js %}
<script {% if element.src %}src="{{ element.src }}"{% endif %} {% if element.type %}type="{{ element.type }}"{% endif %}>{{ element.innerText }}</script>
{% endfor %}
{% endblock %}