41 lines
1.2 KiB
HTML
41 lines
1.2 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>
|
|
<h3>Threads</h3>
|
|
{{if .Threads}}
|
|
<ul>
|
|
{{range .Threads}}
|
|
<li><a href="{{$.BasePath}}/thread/?id={{.ID}}">{{.Title}}</a> - Updated on {{.UpdatedAt.Format "02/01/2006 - 15:04"}}</li>
|
|
{{end}}
|
|
</ul>
|
|
{{else}}
|
|
<p>No threads available in this board yet.</p>
|
|
{{end}}
|
|
</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>
|
|
<input type="submit" value="Create Thread">
|
|
</form>
|
|
</section>
|
|
{{end}}
|
|
</main>
|
|
{{template "cookie_banner" .}}
|
|
</body>
|
|
</html>
|
|
{{end}} |