6 lines
221 B
HTML
Executable File
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 %}
|