guestbook-ng/templates/index.html.ep

22 lines
401 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>
2021-12-12 02:02:54 +00:00
<% for my $row (reverse @$view_posts) { %>
<table>
<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>
</table>
<br>
<% } %>
2021-12-12 02:02:54 +00:00
<%= pagination($this_page, $last_page, '?page={page}') %>