Files
comfychan/web/views/shared/layout.templ
T

31 lines
496 B
Templ

package shared
templ Layout() {
<!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>
}