2022-11-29 04:22:25 +00:00
|
|
|
% layout 'default';
|
2022-09-21 01:16:42 +00:00
|
|
|
% title "Thread #$thread->{'id'}";
|
2023-05-19 22:49:08 +00:00
|
|
|
<h2 class="page-title"><%= title %></h2>
|
|
|
|
<main class="pager">
|
|
|
|
<article class="post">
|
|
|
|
<h3 class="post__title">
|
2023-05-15 02:43:13 +00:00
|
|
|
<%= $thread->{'title'} %>
|
2023-05-19 22:49:08 +00:00
|
|
|
<span class="post__id">#<%= $thread->{'id'} %></span>
|
2023-05-15 02:43:13 +00:00
|
|
|
</h3>
|
2023-05-19 22:49:08 +00:00
|
|
|
<h4 class="post__date"><%= $thread->{'date'} %></h4>
|
|
|
|
<h5 class="post__author"><%= $thread->{'author'} %></h5>
|
|
|
|
<div class="post__body">
|
2023-05-04 01:05:57 +00:00
|
|
|
<%== markdown $thread->{'body'} =%>
|
|
|
|
</div>
|
2023-05-19 22:49:08 +00:00
|
|
|
<nav class="post__nav">
|
2023-05-21 02:53:32 +00:00
|
|
|
<%= link_to post_remark => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click'), begin %>
|
2023-05-15 02:04:11 +00:00
|
|
|
Remark (<%= $thread->{'remark_tally'} %>)
|
2023-05-13 02:43:23 +00:00
|
|
|
<% end %>
|
2023-05-21 02:53:32 +00:00
|
|
|
<%= link_to bump_thread => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click'), begin %>
|
2023-05-15 02:04:11 +00:00
|
|
|
Bump (<%= $thread->{'bump_tally'} %>)
|
2023-05-13 02:43:23 +00:00
|
|
|
<% end %>
|
2023-05-21 02:53:32 +00:00
|
|
|
<%= link_to Flag => flag_thread => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click') %>
|
2023-05-10 00:07:28 +00:00
|
|
|
</nav>
|
|
|
|
<% if (is_mod) { =%>
|
2023-05-19 22:49:08 +00:00
|
|
|
<nav class="post__nav">
|
2023-05-21 02:53:32 +00:00
|
|
|
<%= link_to Hide => hide_thread => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click') %>
|
|
|
|
<%= link_to Unhide => unhide_thread => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click') %>
|
|
|
|
<%= link_to Unflag => unflag_thread => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click') %>
|
2023-05-10 00:07:28 +00:00
|
|
|
</nav>
|
|
|
|
<% } =%>
|
2022-08-24 04:35:35 +00:00
|
|
|
</article>
|
2023-05-10 00:07:28 +00:00
|
|
|
</main>
|
2022-09-21 01:16:42 +00:00
|
|
|
<% if (my $first_remark = $remarks->[0]) { =%>
|
2023-05-19 22:49:08 +00:00
|
|
|
<section class="pager" id="remarks">
|
2023-05-27 16:51:57 +00:00
|
|
|
<h3 class="pager__title">Remarks</h3>
|
2022-09-21 01:16:42 +00:00
|
|
|
<% for my $remark (@{$remarks}) { =%>
|
2023-05-19 22:49:08 +00:00
|
|
|
<article class="post">
|
2023-05-21 15:46:29 +00:00
|
|
|
<h4 class="post__title">
|
2023-05-25 01:57:54 +00:00
|
|
|
<span>
|
|
|
|
<%= $remark->{'date'} %>
|
|
|
|
</span>
|
2023-05-19 22:49:08 +00:00
|
|
|
<%= link_to "#$remark->{'id'}", single_remark =>
|
|
|
|
{remark_id => $remark->{'id'}}, (class => 'post__id') %>
|
2023-05-10 00:07:28 +00:00
|
|
|
</h4>
|
2023-05-19 22:49:08 +00:00
|
|
|
<h5 class="post__author"><%= $remark->{'author'} %></h5>
|
|
|
|
<div class="post__body">
|
2023-05-04 01:05:57 +00:00
|
|
|
<%== markdown $remark->{'body'} =%>
|
|
|
|
</div>
|
2023-05-19 22:49:08 +00:00
|
|
|
<nav class="post__nav">
|
2023-05-21 02:53:32 +00:00
|
|
|
<%= link_to Remark => post_remark => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click') %>
|
|
|
|
<%= link_to Flag => flag_remark => {remark_id => $remark->{'id'}},
|
|
|
|
(class => 'click') %>
|
2022-10-14 03:57:58 +00:00
|
|
|
</nav>
|
2022-08-24 04:35:35 +00:00
|
|
|
</article>
|
|
|
|
<% } =%>
|
2023-05-15 02:43:13 +00:00
|
|
|
<% if ($last_page && $last_page != 1) { =%>
|
2023-05-19 22:49:08 +00:00
|
|
|
<nav class="pager__nav">
|
2023-05-13 21:50:19 +00:00
|
|
|
<%= pagination $this_page, $last_page, ($base_path . '/{page}') %>
|
|
|
|
</nav>
|
2023-05-15 02:43:13 +00:00
|
|
|
<% } =%>
|
2023-05-10 00:07:28 +00:00
|
|
|
</section>
|
2022-08-24 04:35:35 +00:00
|
|
|
<% } =%>
|