2022-11-29 04:22:25 +00:00
|
|
|
% layout 'default';
|
2023-05-28 06:07:09 +00:00
|
|
|
% title my $thread_id = $thread->{'id'} ? "Thread #$thread_id" : '?';
|
2023-06-28 00:55:41 +00:00
|
|
|
<h2 class="page-title">
|
|
|
|
<%= title %> <sup><%= link_to txt => url_for . '.txt' %></sup>
|
|
|
|
</h2>
|
2023-05-29 04:27:16 +00:00
|
|
|
<% if (keys %{$thread}) { =%>
|
2023-06-04 20:36:13 +00:00
|
|
|
<% content_for open_graph => begin %>
|
|
|
|
<meta property="og:type" content="article">
|
2023-06-04 21:47:36 +00:00
|
|
|
<meta property="og:title" content="<%= $thread->{'title'} %>">
|
2023-06-04 20:36:13 +00:00
|
|
|
<meta property="og:description"
|
|
|
|
content="<%= truncate_text $thread->{'body'} %>">
|
|
|
|
<% end %>
|
2023-06-07 19:43:45 +00:00
|
|
|
<% content_for twitter_card => begin %>
|
|
|
|
<meta name="twitter:title" content="<%= $thread->{'title'} %>">
|
|
|
|
<meta name="twitter:description"
|
|
|
|
content="<%= truncate_text $thread->{'body'} %>">
|
|
|
|
<% end %>
|
2023-05-19 22:49:08 +00:00
|
|
|
<main class="pager">
|
|
|
|
<article class="post">
|
|
|
|
<h3 class="post__title">
|
2023-05-15 02:43:13 +00:00
|
|
|
<%= $thread->{'title'} %>
|
2023-05-29 04:27:16 +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>
|
2023-05-28 06:07:09 +00:00
|
|
|
<% } =%>
|
2023-06-02 19:11:15 +00:00
|
|
|
<% if (keys %{$thread} && scalar @{$remarks}) { =%>
|
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-06-25 04:01:13 +00:00
|
|
|
<%= link_to Remark => post_remark =>
|
|
|
|
{thread_id => $thread->{'id'}, remark_id => $remark->{'id'}},
|
2023-05-21 02:53:32 +00:00
|
|
|
(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-06-27 02:10:20 +00:00
|
|
|
<%= pagination $this_page, $last_page, ($base_path . '/{page}#remarks') %>
|
2023-05-13 21:50:19 +00:00
|
|
|
</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
|
|
|
<% } =%>
|