chore: cleanup

This commit is contained in:
2025-02-19 15:36:41 +01:00
parent fe4b783658
commit 55d5431859
18 changed files with 5 additions and 10 deletions
+43
View File
@@ -0,0 +1,43 @@
{% 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>
<!-- Shoelace -->
<link
rel="stylesheet"
media="(prefers-color-scheme:light)"
href="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.19.1/cdn/themes/light.css"
/>
<link
rel="stylesheet"
media="(prefers-color-scheme:dark)"
href="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.19.1/cdn/themes/dark.css"
onload="document.documentElement.classList.add('sl-theme-dark');"
/>
<script type="module"
src="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.19.1/cdn/shoelace-autoloader.js"></script>
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
{% block extra_js %}
{% endblock %}
</head>
<body class="bg-gray-50 dark:bg-gray-900">
<main>
{% block main %}
{% endblock %}
</main>
<script src="{% static 'theme/js/theme.js' %}"></script>
</body>
</html>