15 lines
493 B
HTML
15 lines
493 B
HTML
<!-- templates/base.html -->
|
|
<!doctype html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Trafoking</title>
|
|
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tailwindcss@3.4.1/dist/tailwind.min.css">
|
|
</head>
|
|
<body class="min-h-screen bg-slate-900 text-slate-100 flex flex-col items-center py-8">
|
|
<h1 class="text-4xl font-bold mb-4">Trafoking ⚡👑</h1>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|