guestbook-ng/templates/index.html.ep

25 lines
419 B
Plaintext
Raw Normal View History

2021-12-04 05:11:37 +00:00
% layout 'default';
2021-12-05 04:51:38 +00:00
% title 'Home';
<h2>Messages from the World Wide Web</h2>
<table>
2021-12-19 05:59:36 +00:00
<% for my $row (reverse @$view_posts) { %>
<tr>
<th>Date:</th>
<td><%= @$row[0] %></td>
</tr>
<tr>
<th>Name:</th>
<td><%= @$row[1] %></td>
</tr>
<tr>
<th>Message:</th>
<td><%= @$row[2] %></td>
</tr>
<tr>
<th>&nbsp;</th>
<td>&nbsp;</td>
</tr>
<% } %>
2021-12-19 05:59:36 +00:00
</table>
2021-12-12 02:02:54 +00:00
<%= pagination($this_page, $last_page, '?page={page}') %>