Files

32 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2025-03-31 16:45:51 -03:00
{{define "homepage"}}
{{template "layout-page-start" (args "Title" "Capytal")}}
<div class="flex h-full w-full justify-center pt-[30vh]">
<div>
<header class="mb-10 flex justify-center">
<img src="/assets/icon.svg" alt="Capytal Icon" class="w-10">
<h1 class="h-0 w-0 opacity-0">Homepage</h1>
</header>
<main>
2025-04-11 22:03:31 -03:00
<ul class="flex flex-col gap-3 list-none m-0">
2025-03-31 16:45:51 -03:00
<li class="opacity-80 transition-opacity hover:opacity-100">
2025-04-11 22:03:16 -03:00
<a href="/about?lang={{.Lang}}">/README.md</a>
2025-03-31 16:45:51 -03:00
</li>
2025-04-07 19:56:25 -03:00
<li class="opacity-80 transition-opacity hover:opacity-100">
2025-04-11 22:03:16 -03:00
<a href="/privacy?lang={{.Lang}}">/PRIVACY.md</a>
2025-04-07 19:56:25 -03:00
</li>
2025-03-31 16:45:51 -03:00
<span hx-get="/blog/?lang={{.Lang}}" hx-trigger="load" hx-select="#blog-entries li" hx-swap="outerHTML"
aria-busy="true">
<span class="htmx-indicator opacity-50" style="text-decoration: none !important;">
Loading...
</span>
</span>
</ul>
</main>
<footer class="mx-10 mb-5 mt-10 min-h-[10vh] text-center opacity-50 md:mx-auto md:w-[80%]">
2025-04-11 22:03:31 -03:00
<p>&copy; <a href="https://capytal.cc" class="no-underline">Capytal</a></p>
2025-03-31 16:45:51 -03:00
</footer>
</div>
</div>
{{template "layout-page-end"}}
{{end}}