2022-07-28 20:44:47 -04:00
|
|
|
% layout 'main';
|
|
|
|
% title 'View Threads';
|
|
|
|
<h2><%= title %></h2>
|
2022-08-04 22:46:35 -04:00
|
|
|
<div class="threads">
|
|
|
|
<% for my $thread (@$threads) { =%>
|
|
|
|
<article class="thread">
|
2022-08-22 23:09:48 -04:00
|
|
|
<span class="id">
|
|
|
|
<%= link_to '#' . %$thread{'id'}, '/thread/' . %$thread{'id'} %>
|
|
|
|
</span>
|
2022-08-04 22:46:35 -04:00
|
|
|
<h3 class="title"><%= %$thread{'title'} %></h3>
|
|
|
|
<h4 class="date"><%= %$thread{'date'} %></h4>
|
|
|
|
<h5 class="author"><%= %$thread{'author'} %></h5>
|
|
|
|
<p class="body"><%= %$thread{'body'} %></p>
|
|
|
|
</article>
|
|
|
|
<% } =%>
|
|
|
|
</div>
|
2022-08-14 18:30:22 -04:00
|
|
|
<% if ($last_page && $last_page != 1) { =%>
|
|
|
|
<nav>
|
|
|
|
<%= pagination $this_page, $last_page, ($base_path . '/{page}') %>
|
|
|
|
</nav>
|
|
|
|
<% } =%>
|