53 lines
1.9 KiB
HTML
53 lines
1.9 KiB
HTML
{{define "board"}}
|
||
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<title>{{.Title}}</title>
|
||
<link rel="stylesheet" href="{{.StaticPath}}/style.css">
|
||
<script src="{{.StaticPath}}/app.js" defer></script>
|
||
</head>
|
||
<body>
|
||
{{template "navbar" .}}
|
||
<main>
|
||
<div class="breadcrumb">
|
||
<a href="{{.BasePath}}/">Home</a>
|
||
<span class="breadcrumb-separator">›</span>
|
||
<a href="{{.BasePath}}/boards/">Boards</a>
|
||
<span class="breadcrumb-separator">›</span>
|
||
<span class="breadcrumb-current">{{.Board.Name}}</span>
|
||
</div>
|
||
<a href="{{.BasePath}}/boards/" class="back-button">Back to Boards</a>
|
||
<header>
|
||
<h2>{{.Board.Name}}</h2>
|
||
<p>{{.Board.Description}}</p>
|
||
</header>
|
||
<section>
|
||
<h3>Threads</h3>
|
||
{{if .Threads}}
|
||
<ul class="thread-list">
|
||
{{range .Threads}}
|
||
<li class="thread-item">
|
||
<a href="{{$.BasePath}}/thread/?id={{.ID}}">{{.Title}}</a>
|
||
<p class="thread-info" data-timestamp="{{.UpdatedAt.Format "2006-01-02T15:04:05Z07:00"}}">Updated on {{.UpdatedAt.Format "02/01/2006 - 15:04"}}</p>
|
||
</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 maxlength="255"><br>
|
||
<input type="submit" value="Create Thread">
|
||
</form>
|
||
</section>
|
||
{{end}}
|
||
</main>
|
||
{{template "cookie_banner" .}}
|
||
</body>
|
||
</html>
|
||
{{end}} |