27 lines
654 B
Plaintext
27 lines
654 B
Plaintext
% layout 'default';
|
|
% title 'View';
|
|
<h2>Messages from the World Wide Web</h2>
|
|
<div class="articles">
|
|
<% for my $post (@$view_posts) { =%>
|
|
<article>
|
|
<h3><%= @$post[0] %></h3>
|
|
<section class="message field">
|
|
<blockquote><p><%= @$post[2] %></p></blockquote>
|
|
</section>
|
|
<section class="name field">
|
|
<figcaption>
|
|
- <%= @$post[1] %>
|
|
<% if (@$post[3]) { =%>
|
|
(<%= link_to Homepage => @$post[3] %>)
|
|
<% } =%>
|
|
</figcaption>
|
|
</section>
|
|
</article>
|
|
<% } =%>
|
|
</div>
|
|
<% if ($last_page && $last_page != 1) { =%>
|
|
<nav>
|
|
<%= pagination $this_page, $last_page, '?page={page}' %>
|
|
</nav>
|
|
<% } =%>
|