threadr-rewritten/templates/pages/boards.html

36 lines
877 B
HTML

{{define "boards"}}
<!DOCTYPE html>
<html>
<head>
<title>{{.Title}}</title>
<link rel="stylesheet" href="{{.StaticPath}}/style.css">
</head>
<body>
{{template "navbar" .}}
<main>
<header>
<h2>Boards</h2>
</header>
<section>
<h3>Public Boards</h3>
<ul>
{{range .PublicBoards}}
<li><a href="{{$.BasePath}}/board/?id={{.ID}}">{{.Name}}</a></li>
{{end}}
</ul>
</section>
{{if .LoggedIn}}
<section>
<h3>Private Boards</h3>
<ul>
{{range .PrivateBoards}}
<li><a href="{{$.BasePath}}/board/?id={{.ID}}">{{.Name}}</a></li>
{{end}}
</ul>
</section>
{{end}}
</main>
{{template "cookie_banner" .}}
</body>
</html>
{{end}}