render templated homepage

This commit is contained in:
2026-05-31 19:05:39 -05:00
parent 16cb057670
commit 6958eea830
7 changed files with 155 additions and 19 deletions
+17
View File
@@ -0,0 +1,17 @@
package views
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>
</head>
<body>
<main>
{ children... }
</main>
</body>
</html>
}