Setup basic project structure

This commit is contained in:
Dominic Ferrando
2025-04-16 22:27:34 -04:00
parent bb7b8fca2e
commit 7ebebf084f
14 changed files with 303 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
package shared
templ Layout() {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Comfychan</title>
<link rel="stylesheet" href="/static/index.css" />
</head>
<body>
<div id="boardList">
<span>
[
<a href="/">index</a>
]
</span>
<span>
[
<a href="/comfy">comfy</a>
/
<a>r9k</a>
]
</span>
</div>
{ children... }
</body>
</html>
}