depyth/views/layout.liquid

21 lines
545 B
Plaintext
Raw Normal View History

2024-04-09 16:35:18 +02:00
<!DOCTYPE html>
<html class="h-max min-h-screen flex flex-col" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<meta name="color-scheme" content="light" />
<link href="/static/styles.css" rel="stylesheet">
<script src="/static/htmx.min.js" defer></script>
{% block head %}{% endblock %}
</head>
<body class="w-full max-w-screen flex-1 h-full min-h-max flex text-black">
{% block content %}{% endblock %}
</body>
</html>