60 lines
1.6 KiB
HTML
60 lines
1.6 KiB
HTML
{% load static %} {% load django_htmx %}
|
|
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Django Template" />
|
|
<title>MQTT Ase User Management</title>
|
|
<link
|
|
rel="icon"
|
|
type="image/x-icon"
|
|
href="{% static 'images/favicon.ico' %}"
|
|
/>
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href="{% static 'images/apple-touch-icon.png' %}"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="{% static 'images/favicon-32x32.png' %}"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href="{% static 'images/favicon-16x16.png' %}"
|
|
/>
|
|
<link rel="icon" href="{% static 'images/favicon.ico' %}" />
|
|
<link rel="manifest" href="{% static 'images/site.webmanifest' %}" />
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<script
|
|
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
|
|
defer
|
|
></script>
|
|
|
|
<!-- HTMX -->
|
|
<script src="https://unpkg.com/htmx.org@2.0.4" defer></script>
|
|
{% django_htmx_script %}
|
|
|
|
<!-- Custom Styles -->
|
|
<style>
|
|
.dropdown-menu {
|
|
min-width: 200px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'>
|
|
{% include 'includes/header.html' %} {% include 'includes/messages.html' %}
|
|
{% block layout %} {% endblock %} {% block javascript %}{% endblock %}
|
|
</body>
|
|
</html>
|