mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
24 lines
704 B
HTML
24 lines
704 B
HTML
<html>
|
|
|
|
{{ template "head.tpl.html" . }}
|
|
|
|
<body class="bg-gray-800 text-gray-700 p-4 pt-10 flex flex-col min-h-screen max-w-screen-xl mx-auto justify-center">
|
|
<div class="w-full flex justify-center">
|
|
<div class="flex items-center justify-between max-w-4xl flex-grow">
|
|
<div><a href="" class="text-gray-500 text-sm">&larr Go back</a></div>
|
|
<div><h1 class="font-semibold text-2xl text-white m-0 border-b-4 border-green-700">Imprint & Data Privacy</h1>
|
|
</div>
|
|
<div></div>
|
|
</div>
|
|
</div>
|
|
|
|
<main class="mt-10 flex-grow flex justify-center w-full">
|
|
{{ htmlSafe .HtmlText }}
|
|
</main>
|
|
|
|
{{ template "footer.tpl.html" . }}
|
|
|
|
{{ template "foot.tpl.html" . }}
|
|
</body>
|
|
|
|
</html> |