This commit is contained in:
2026-05-12 01:13:01 +02:00
commit bf304e17c9
46 changed files with 4358 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package templates
templ Layout(title string, cssPath string, jsPath string) {
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>{ title }</title>
<link rel="stylesheet" href={ cssPath }/>
<script type="module" src={ jsPath } defer></script>
</head>
<body class="bg-stone-950 text-stone-100 antialiased">
{ children... }
</body>
</html>
}