cpolis/web/templates/index.html

33 lines
890 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Orient Editor</title>
2024-04-01 14:22:59 +02:00
<link href="/web/static/css/style.css" rel="stylesheet">
</head>
2024-04-01 14:22:59 +02:00
<body class="flex flex-col justify-between min-h-[100dvh] bg-slate-50">
<header class="my-8">
<h1 class="font-bold text-4xl text-center">Orient Editor</h1>
<button class="btn" hx-get="logout" hx-target="#page-content">Abmelden</button>
2024-03-17 15:29:12 +01:00
</header>
2024-03-17 15:29:12 +01:00
<main>
<div id="page-content">
{{template "page-content" .}}
</div>
2024-04-01 14:22:59 +02:00
<script src="/web/static/js/htmx.min.js"></script>
2024-03-17 15:29:12 +01:00
</main>
2024-04-01 14:22:59 +02:00
<footer class="my-8">
<p class="text-center text-gray-500 dark:text-gray-400">
&copy; 2024 Jason Streifling. Alle Rechte vorbehalten.
</p>
2024-03-17 15:29:12 +01:00
</footer>
</body>
</html>