This commit is contained in:
2026-01-24 15:59:05 +02:00
parent cbb3fb3421
commit b59d27d13d
12 changed files with 165 additions and 4 deletions
+19
View File
@@ -0,0 +1,19 @@
package templates
templ Layout(title string) {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{title}</title>
<script src="/static/htmx.2.0.8.min.js"></script>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 20px; }
</style>
</head>
<body>
{ children... }
</body>
</html>
}