feat: initialize template

This commit is contained in:
2026-03-02 22:36:47 +01:00
parent b4e8baabdc
commit dd5e32cc4d
62 changed files with 433 additions and 1016 deletions
+18
View File
@@ -0,0 +1,18 @@
package layouts
templ Base(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>
<link rel="icon" type="image/png" href="/static/favicon.png"/>
</head>
<body>
<main>
{ children... }
</main>
</body>
</html>
}