guestbook-ng/templates/index.html.ep
2022-01-04 18:27:05 -05:00

27 lines
644 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>
<% unless ($last_page == 1) { =%>
<nav>
<%= pagination $this_page, $last_page, '?page={page}' %>
</nav>
<% } =%>