42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
{{define "board"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{.Title}}</title>
|
|
<link rel="stylesheet" href="{{.StaticPath}}/style.css">
|
|
</head>
|
|
<body>
|
|
{{template "navbar" .}}
|
|
<main>
|
|
<header>
|
|
<h2>{{.Board.Name}}</h2>
|
|
<p>{{.Board.Description}}</p>
|
|
</header>
|
|
<section>
|
|
<ul>
|
|
{{range .Threads}}
|
|
<li><a href="{{$.BasePath}}/thread/?id={{.ID}}">{{.Title}}</a> ({{.Type}})</li>
|
|
{{end}}
|
|
</ul>
|
|
</section>
|
|
{{if .LoggedIn}}
|
|
<section>
|
|
<h3>Create New Thread</h3>
|
|
<form method="post" action="{{.BasePath}}/board/?id={{.Board.ID}}&action=create_thread">
|
|
<label for="title">Thread Title:</label>
|
|
<input type="text" id="title" name="title" required><br>
|
|
<label for="type">Thread Type:</label>
|
|
<select id="type" name="type">
|
|
<option value="classic">Classic</option>
|
|
<option value="chat">Chat</option>
|
|
<option value="question">Question</option>
|
|
</select><br>
|
|
<input type="submit" value="Create Thread">
|
|
</form>
|
|
</section>
|
|
{{end}}
|
|
</main>
|
|
{{template "cookie_banner" .}}
|
|
</body>
|
|
</html>
|
|
{{end}} |