2022-08-24 05:55:19 +00:00
|
|
|
{{define "title"}}{{.Forum.Title}}{{end}}
|
|
|
|
{{define "content"}}
|
|
|
|
<div class="block">
|
|
|
|
<section class="hero is-light is-success">
|
|
|
|
<div class="hero-body">
|
|
|
|
<div class="container">
|
|
|
|
<h1 class="title">
|
2022-08-25 04:17:34 +00:00
|
|
|
<a href="/f/{{.Forum.Fragment}}" class="has-text-light">
|
|
|
|
<span class="icon mr-4"><i class="fa fa-comments"></i></span>
|
|
|
|
<span>{{.Forum.Title}}</span>
|
|
|
|
</a>
|
2022-08-24 05:55:19 +00:00
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{$Root := .}}
|
|
|
|
|
2022-08-26 02:58:43 +00:00
|
|
|
<div class="block p-4">
|
2022-08-24 05:55:19 +00:00
|
|
|
<div class="columns">
|
|
|
|
<div class="column">
|
|
|
|
<nav class="breadcrumb" aria-label="breadcrumbs">
|
|
|
|
<ul>
|
|
|
|
<li><a href="/forum">Forums</a></li>
|
|
|
|
<li class="is-active">
|
|
|
|
<a href="{{.Request.URL.Path}}" aria-current="page">{{.Forum.Title}}</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
<div class="column is-narrow">
|
2022-08-25 04:17:34 +00:00
|
|
|
{{if or .CurrentUser.IsAdmin (not .Forum.Privileged) (eq .Forum.OwnerID .CurrentUser.ID)}}
|
2022-08-24 05:55:19 +00:00
|
|
|
<a href="/forum/post?to={{.Forum.Fragment}}" class="button is-primary">
|
|
|
|
<span class="icon"><i class="fa fa-plus"></i></span>
|
|
|
|
<span>New Thread</span>
|
|
|
|
</a>
|
2022-08-25 04:17:34 +00:00
|
|
|
{{end}}
|
2022-08-24 05:55:19 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p class="block p-2">
|
|
|
|
Found <strong>{{.Pager.Total}}</strong> post{{Pluralize64 .Pager.Total}} on this forum
|
|
|
|
(page {{.Pager.Page}} of {{.Pager.Pages}}).
|
|
|
|
</p>
|
|
|
|
|
2022-08-25 04:17:34 +00:00
|
|
|
{{if .Forum.Privileged}}
|
|
|
|
<div class="block p-2 notification is-warning is-light">
|
2023-08-30 07:08:20 +00:00
|
|
|
<i class="fa fa-peace mr-1"></i>
|
2022-08-25 04:17:34 +00:00
|
|
|
Only moderators may create new threads on this forum. You may be able to reply to threads here.
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
2022-08-24 05:55:19 +00:00
|
|
|
<div class="block p-2">
|
2023-06-22 03:46:27 +00:00
|
|
|
{{SimplePager .Pager}}
|
2022-08-24 05:55:19 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{$Root := .}}
|
|
|
|
<div class="block p-2">
|
|
|
|
{{range .Threads}}
|
|
|
|
{{$Stats := $Root.ThreadMap.Get .ID}}
|
2022-09-01 05:58:32 +00:00
|
|
|
<div class="box has-background-success-light">
|
2022-08-24 05:55:19 +00:00
|
|
|
<div class="columns">
|
2022-08-26 02:58:43 +00:00
|
|
|
<div class="column is-2 has-text-centered pt-0 pb-1">
|
2022-08-24 05:55:19 +00:00
|
|
|
<div>
|
|
|
|
<a href="/u/{{.Comment.User.Username}}">
|
2022-09-09 04:42:20 +00:00
|
|
|
{{template "avatar-64x64" .Comment.User}}
|
2022-08-24 05:55:19 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<a href="/u/{{.Comment.User.Username}}">{{.Comment.User.Username}}</a>
|
|
|
|
</div>
|
2022-08-26 02:58:43 +00:00
|
|
|
<div class="column content pt-1 pb-0">
|
2022-09-01 05:58:32 +00:00
|
|
|
<a href="/forum/thread/{{.ID}}">
|
|
|
|
<h2 class="is-size-4 pt-0">
|
2022-08-26 02:58:43 +00:00
|
|
|
{{if .Pinned}}<sup class="fa fa-thumbtack has-text-success mr-2 is-size-6" title="Pinned"></sup>{{end}}
|
2022-08-24 05:55:19 +00:00
|
|
|
{{or .Title "Untitled"}}
|
2022-08-26 02:58:43 +00:00
|
|
|
</h2>
|
2022-08-24 05:55:19 +00:00
|
|
|
{{TrimEllipses .Comment.Message 256}}
|
|
|
|
</a>
|
|
|
|
|
2022-08-26 02:58:43 +00:00
|
|
|
<hr class="has-background-success my-2">
|
2022-08-24 05:55:19 +00:00
|
|
|
<div>
|
2022-08-25 04:17:34 +00:00
|
|
|
{{if .Pinned}}
|
|
|
|
<span class="tag is-success is-light mr-2">
|
|
|
|
<span class="icon"><i class="fa fa-thumbtack"></i></span>
|
|
|
|
<span>Pinned</span>
|
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
|
2022-12-21 03:15:45 +00:00
|
|
|
{{if .PollID}}
|
|
|
|
<span class="tag is-info is-light mr-2">
|
|
|
|
<span class="icon"><i class="fa fa-poll"></i></span>
|
|
|
|
<span>Poll</span>
|
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
|
2022-08-25 04:17:34 +00:00
|
|
|
{{if .Explicit}}
|
|
|
|
<span class="tag is-danger is-light mr-2">
|
|
|
|
<span class="icon"><i class="fa fa-fire"></i></span>
|
|
|
|
<span>NSFW</span>
|
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{if .NoReply}}
|
|
|
|
<span class="tag is-warning is-light mr-2" title="This thread can not be replied to.">
|
|
|
|
<span class="icon"><i class="fa fa-ban"></i></span>
|
|
|
|
<span>No Reply</span>
|
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<em title="{{.UpdatedAt.Format "2006-01-02 15:04:05"}}">Updated {{SincePrettyCoarse .UpdatedAt}} ago</em>
|
2022-08-24 05:55:19 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-08-26 02:58:43 +00:00
|
|
|
<div class="column is-narrow pb-1 pt-0 px-1">
|
2022-08-24 05:55:19 +00:00
|
|
|
<div class="columns is-mobile">
|
2022-08-26 02:58:43 +00:00
|
|
|
<div class="column has-text-centered pr-1">
|
|
|
|
<div class="box p-2">
|
2022-08-24 05:55:19 +00:00
|
|
|
<p class="is-size-7">Replies</p>
|
|
|
|
{{if $Stats}}
|
|
|
|
{{$Stats.Replies}}
|
|
|
|
{{else}}
|
|
|
|
err
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-08-26 02:58:43 +00:00
|
|
|
<div class="column has-text-centered pl-1">
|
|
|
|
<div class="box p-2">
|
2022-08-24 05:55:19 +00:00
|
|
|
<p class="is-size-7">Views</p>
|
|
|
|
{{if $Stats}}
|
|
|
|
{{$Stats.Views}}
|
|
|
|
{{else}}
|
|
|
|
err
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
2023-09-30 22:24:14 +00:00
|
|
|
<div class="block p-2">
|
|
|
|
{{SimplePager .Pager}}
|
|
|
|
</div>
|
|
|
|
|
2023-06-22 03:46:27 +00:00
|
|
|
{{end}}
|