Include favicon.svg in go:embed directive to fix 404 in production. Add legal notice (impress) and privacy policy pages with full EN/DE translations, route handlers, and footer links.
26 lines
1.2 KiB
HTML
26 lines
1.2 KiB
HTML
{{define "content"}}
|
|
<div class="max-w-3xl mx-auto space-y-8">
|
|
<h1 class="text-2xl font-bold">{{t "impress.title"}}</h1>
|
|
|
|
<div class="space-y-6">
|
|
<section class="bg-white dark:bg-gray-800 rounded-xl p-5 shadow-sm space-y-2">
|
|
<h2 class="text-lg font-semibold">{{t "impress.responsible"}}</h2>
|
|
<p class="text-sm text-gray-600 dark:text-gray-400">Christian Nachtigall</p>
|
|
<p class="text-sm text-gray-600 dark:text-gray-400">Karwendelstr. 21</p>
|
|
<p class="text-sm text-gray-600 dark:text-gray-400">82061 Neuried</p>
|
|
<p class="text-sm text-gray-600 dark:text-gray-400">{{t "impress.country"}}</p>
|
|
</section>
|
|
|
|
<section class="bg-white dark:bg-gray-800 rounded-xl p-5 shadow-sm space-y-2">
|
|
<h2 class="text-lg font-semibold">{{t "impress.contact"}}</h2>
|
|
<p class="text-sm text-gray-600 dark:text-gray-400">{{t "impress.email"}}: christian@nachtigall.dev</p>
|
|
</section>
|
|
|
|
<section class="bg-white dark:bg-gray-800 rounded-xl p-5 shadow-sm space-y-2">
|
|
<h2 class="text-lg font-semibold">{{t "impress.disclaimer.title"}}</h2>
|
|
<p class="text-sm text-gray-600 dark:text-gray-400">{{t "impress.disclaimer.text"}}</p>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
{{end}}
|