rowt/templates/base.html.tera
2023-04-05 22:20:12 +02:00

17 lines
351 B
Plaintext

<!DOCTYPE html>
<html lang="de">
<head>
<link rel="manifest" href="public/manifest.json" />
<link rel="stylesheet" href="/public/main.css">
</head>
<body class="bg-gray-100">
<div class="flex min-h-screen items-center justify-center px-4 py-12 sm:px-6 lg:px-8">
{% block content %}
{% endblock content %}
</div>
</body>
</html>