Files
comfychan/web/views/shared/layout.templ
T
2025-04-17 07:35:28 -04:00

32 lines
564 B
Templ

package shared
templ Layout() {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Comfychan</title>
<script src="https://unpkg.com/hyperscript.org@0.9.14"></script>
<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>
}