Add reset.css. Create new thread btn

This commit is contained in:
Dominic Ferrando
2025-04-16 23:24:09 -04:00
parent a7b2c052de
commit 598eeb0a60
6 changed files with 188 additions and 34 deletions
+26 -28
View File
@@ -1,32 +1,30 @@
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>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Comfychan</title>
<link rel="stylesheet" href="/static/reset.css"/>
<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 href="#">r9k</a>
]
</span>
</div>
{ children... }
</body>
</html>
}