6 lines
229 B
HTML
Executable File
6 lines
229 B
HTML
Executable File
{% block js %}
|
|
{% for element in javascript %}
|
|
<script {% if element.src %}src="{{ element.src }}"{% endif %} {% if element.type %}type="{{ element.type }}"{% endif %}>{{ element.innerText }}</script>
|
|
{% endfor %}
|
|
{% endblock %}
|