14 lines
396 B
HTML
14 lines
396 B
HTML
|
|
{% load static %}
|
|
|
|
<!-- Core JS Files -->
|
|
|
|
<script src="{% static 'libs/bootstrap/bootstrap.bundle.min.js' %}" type="text/javascript"></script>
|
|
|
|
<!-- Htmx JS & Extentions -->
|
|
<script src="{% static 'libs/htmx/htmx.min.js' %}" type="text/javascript"></script>
|
|
|
|
{% if DEBUG %}
|
|
<!-- Htmx Debug JS -->
|
|
<script src="{% static 'libs/htmx/debug.js' %}" type="text/javascript"></script>
|
|
{% endif %}
|