PostText/templates/thread/by_page.html.ep

42 lines
1.3 KiB
Plaintext
Raw Normal View History

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