2024-02-18 10:07:49 +01:00
|
|
|
<!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">
|
2024-08-08 21:09:38 +02:00
|
|
|
<link rel="stylesheet" href="https://unpkg.com/easymde/dist/easymde.min.css">
|
2024-02-18 10:07:49 +01:00
|
|
|
</head>
|
|
|
|
|
2024-04-03 04:50:25 +02:00
|
|
|
<body class="flex flex-col justify-between min-h-screen bg-slate-50">
|
2024-04-01 14:22:59 +02:00
|
|
|
<header class="my-8">
|
|
|
|
<h1 class="font-bold text-4xl text-center">Orient Editor</h1>
|
2024-03-17 15:29:12 +01:00
|
|
|
</header>
|
2024-02-18 10:07:49 +01:00
|
|
|
|
2024-04-01 19:26:18 +02:00
|
|
|
<main class="mx-4">
|
2024-03-17 15:29:12 +01:00
|
|
|
<div id="page-content">
|
|
|
|
{{template "page-content" .}}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
2024-04-01 14:22:59 +02:00
|
|
|
<footer class="my-8">
|
|
|
|
<p class="text-center text-gray-500 dark:text-gray-400">
|
|
|
|
© 2024 Jason Streifling. Alle Rechte vorbehalten.
|
|
|
|
</p>
|
2024-08-30 18:34:40 +02:00
|
|
|
<p class="text-center text-gray-500 dark:text-gray-400">
|
|
|
|
<strong>Hinweis:</strong> Diese Software befindet sich noch in der Entwicklung und kann Fehler enthalten.
|
|
|
|
</p>
|
2024-03-17 15:29:12 +01:00
|
|
|
</footer>
|
2024-04-01 19:26:18 +02:00
|
|
|
|
2024-08-08 21:09:38 +02:00
|
|
|
<script src="https://unpkg.com/htmx.org@2.0.1"></script>
|
|
|
|
<script src="https://unpkg.com/easymde/dist/easymde.min.js"></script>
|
2024-02-18 10:07:49 +01:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|