PostText/templates/thread/by_page.html.ep

39 lines
1.3 KiB
Plaintext
Raw Normal View History

% layout 'default';
2022-10-01 18:00:23 -04:00
% title 'Threads List';
<h2><%= title %></h2>
<main class="threads">
2022-10-01 18:00:23 -04:00
<% for my $thread (@{$threads}) { =%>
<article class="thread">
2023-04-24 23:00:09 -04:00
<h3 class="title">
<%= link_to single_thread => {thread_id => $thread->{'id'}}, begin %>
<%= $thread->{'title'} %>
<% end %>
2023-05-14 00:48:24 -04:00
<%= link_to "#$thread->{'id'}",
single_thread => {thread_id => $thread->{'id'}}, (class => 'id') %>
2023-04-24 23:00:09 -04:00
</h3>
2022-10-01 18:00:23 -04:00
<h4 class="date"><%= $thread->{'date'} %></h4>
<h5 class="author"><%= $thread->{'author'} %></h5>
<div class="body">
<%== markdown truncate_text $thread->{'body'} =%>
</div>
2023-04-24 23:00:09 -04:00
<nav>
2022-10-01 18:00:23 -04:00
<%= link_to Remark => post_remark => {thread_id => $thread->{'id'}} %>
<%= link_to url_for(single_thread => {thread_id => $thread->{'id'}})
2023-04-24 23:00:09 -04:00
->fragment('remarks'), begin %>
2023-05-14 00:48:24 -04:00
<%= $thread->{'remark_tally'} %> Remarks
2023-05-12 22:43:23 -04:00
<% end %>
<%= link_to bump_thread => {thread_id => $thread->{'id'}}, begin %>
2023-05-14 00:48:24 -04:00
Bump (<%= $thread->{'bump_tally'} %>)
2023-05-12 22:43:23 -04:00
<% end %>
2023-05-14 00:48:24 -04:00
<%= link_to Flag => flag_thread => {thread_id => $thread->{'id'}},
(class => 'flag') %>
2022-10-13 23:57:58 -04:00
</nav>
2022-10-01 18:00:23 -04:00
</article>
<% } =%>
2023-05-13 16:10:28 -04:00
<% if ($last_page && $last_page != 1) { =%>
<nav>
<%= pagination $this_page, $last_page, ($base_path . '/{page}') %>
</nav>
2022-10-01 18:00:23 -04:00
<% } =%>
2023-05-13 16:10:28 -04:00
</main>