Files
shoppy/web/templates/theme/base.html
T
pablo 201451d89f
CI / test (push) Successful in 1m54s
CI / build (push) Successful in 16s
feat: improved UI
2026-07-31 15:09:50 +02:00

41 lines
1.4 KiB
HTML

{% load static %}
<!DOCTYPE html>
<html lang="es" data-theme="shoppy">
<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="{{ favicon }}"/>
<script src="https://unpkg.com/htmx.org@2.0.3"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&display=swap" rel="stylesheet">
<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" />
<style type="text/tailwindcss">
@theme {
--font-display: "Outfit", ui-sans-serif, system-ui, sans-serif;
}
</style>
<link rel="stylesheet" href="{% static 'css/theme.css' %}">
{% block extra_js %}
{% endblock %}
</head>
<body class="bg-base-100 text-base-content antialiased min-h-screen flex flex-col">
<main class="flex-1">
{% block main %}
{% endblock %}
</main>
<script src="{% static 'theme/js/theme.js' %}"></script>
</body>
</html>