refactor: migrate from templ to html/template

This commit is contained in:
2026-05-01 15:46:16 +02:00
committed by Mikkel Elvers
parent e6600e8af4
commit 2c6d28cf01
14 changed files with 261 additions and 1253 deletions

View File

@@ -0,0 +1,7 @@
{{define "title"}}Not Found{{end}}
{{define "content"}}
<div class="text-center py-20">
<h2 class="text-4xl font-bold mb-4">404</h2>
<p class="text-xl text-gray-400">Page not found</p>
</div>
{{end}}