32 lines
936 B
HTML
32 lines
936 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>{{ title }}</title>
|
|
|
|
<link rel="manifest" href="{% url 'web:manifest_json' %}">
|
|
|
|
{% include "theme/seo.html" %}
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>
|
|
<script src="https://unpkg.com/htmx.org@2.0.3"></script>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
|
|
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
|
<link href="https://cdn.jsdelivr.net/npm/daisyui@5/themes.css" rel="stylesheet" type="text/css" />
|
|
|
|
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
|
|
{% block extra_js %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<main>
|
|
{% block main %}
|
|
|
|
{% endblock %}
|
|
</main>
|
|
<script src="{% static 'theme/js/theme.js' %}"></script>
|
|
</body>
|
|
</html>
|