25 lines
586 B
HTML
25 lines
586 B
HTML
{{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}} |