🚧 Add front-end code

This commit is contained in:
Dan Jones 2025-05-16 14:39:17 -05:00
commit c0c2a5ffcc
Signed by: dan
GPG key ID: 5B3B0F7217473A29
5 changed files with 127 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{{define "base" }}
<!doctype html>
<html lang="en">
{{template "header" .}}
<body>
{{block "content" .}}
{{end}}
{{block "js" .}}
{{end}}
{{template "footer" .}}
</body>
</html>
{{end}}