Files
capytal.cc/templates/privacy.html

17 lines
502 B
HTML
Raw Normal View History

2025-04-07 19:57:23 -03:00
{{define "privacy-policy"}}
{{template "layout-page-start" (args "Title" .Title)}}
<style>
</style>
2025-04-07 19:57:23 -03:00
<div class="flex flex-col h-full w-full justify-center pt-[20vh]">
<header class="mb-10 flex justify-center">
<img src="/assets/icon.svg" alt="Capytal Icon" class="w-10">
</header>
<main class="mx-10 md:text-justify md:mx-auto md:w-[80%]">
{{.Content}}
2025-04-07 19:57:23 -03:00
</main>
{{template "nav-bar" (args "Lang" .Lang)}}
{{template "footer" (args "Lang" .Lang)}}
</div>
{{template "layout-page-end"}}
{{end}}