mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
fbae5f8757
* ui: footer alignment * chore: upgrade tailwind to v3 * fix: tailwind 3 class renames * ui(fix): alias green to emerald for tailwind 3
24 lines
525 B
HTML
24 lines
525 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{{ template "head.tpl.html" . }}
|
|
|
|
<body class="bg-gray-900 text-gray-700 p-4 pt-10 flex flex-col min-h-screen max-w-screen-lg mx-auto justify-center">
|
|
|
|
{{ template "header.tpl.html" . }}
|
|
|
|
<main class="mt-10 grow flex w-full">
|
|
<div class="grow max-w-4xl flex flex-col">
|
|
<h1 class="h1">Imprint & Data Privacy</h1>
|
|
<p>
|
|
{{ htmlSafe .HtmlText }}
|
|
</p>
|
|
</div>
|
|
</main>
|
|
|
|
{{ template "footer.tpl.html" . }}
|
|
|
|
{{ template "foot.tpl.html" . }}
|
|
</body>
|
|
|
|
</html> |