27 lines
533 B
HTML
27 lines
533 B
HTML
{% load static tailwind_tags %}
|
|
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>{{ title }}</title>
|
|
|
|
{% include "theme/seo.html" %}
|
|
|
|
<script src="https://unpkg.com/htmx.org@2.0.3"></script>
|
|
|
|
{% tailwind_css %}
|
|
{% block extra_js %}
|
|
{% endblock %}
|
|
</head>
|
|
<body class="bg-gray-50 dark:bg-gray-900">
|
|
<main>
|
|
{% block main %}
|
|
|
|
{% endblock %}
|
|
</main>
|
|
</body>
|
|
|
|
<script src="{% static 'theme/js/theme.js' %}"></script>
|
|
</html>
|