dockerized

This commit is contained in:
Juraj Kubričan
2024-09-06 21:49:04 +02:00
parent 80d26daaf6
commit bde60f016d
9 changed files with 194 additions and 48 deletions

25
views/index.html Normal file
View File

@@ -0,0 +1,25 @@
{{block "index" .}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/htmx.org@1.9.5"></script>
</head>
<body class="bg-gray-900 text-white font-sans">
<main id="main" class="max-w-3xl mx-auto p-6 rounded-lg">
<section>
<p class="mt-4">
Nothing to see here...
</p>
</section>
</main>
</body>
</html>
{{end}}