Style tweaks

This commit is contained in:
swag 2022-01-04 18:27:05 -05:00
parent eddcca861a
commit c4d05dcb05
2 changed files with 12 additions and 10 deletions

View File

@ -88,15 +88,15 @@ img {
}
.articles {
displace: flex;
display: flex;
flex-flow: column;
margin-bottom: 1em;
}
article {
border-color: #00FF00;
border-style: ridge;
padding: 0em 1em;
margin-bottom: 1em;
}
article .message.field {

View File

@ -1,24 +1,26 @@
% layout 'default';
% title 'View';
<h2>Messages from the World Wide Web</h2>
<% for my $row (@$view_posts) { =%>
<div class="articles">
<% for my $post (@$view_posts) { =%>
<article>
<h3><%= @$row[0] %></h3>
<h3><%= @$post[0] %></h3>
<section class="message field">
<blockquote><p><%= @$row[2] %></p></blockquote>
<blockquote><p><%= @$post[2] %></p></blockquote>
</section>
<section class="name field">
<figcaption>
- <%= @$row[1] %>
<% if (@$row[3]) { =%>
(<%= link_to Homepage => @$row[3] %>)
- <%= @$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}') %>
<%= pagination $this_page, $last_page, '?page={page}' %>
</nav>
<% } =%>