Clean up this template a lil
This commit is contained in:
parent
ed31fb963c
commit
edc7a19bb0
|
@ -1,23 +1,21 @@
|
||||||
% layout 'main';
|
% layout 'main';
|
||||||
% title 'New Remark';
|
% title 'New Remark';
|
||||||
<h2><%= title %></h2>
|
<h2><%= title %></h2>
|
||||||
<% if (my $thread_body = %$thread{'body'}) { =%>
|
<div class="threads">
|
||||||
<div class="threads">
|
<article class="thread">
|
||||||
<article class="thread">
|
<span class="id">#<%= %$thread{'id'} %></span>
|
||||||
<span class="id">#<%= %$thread{'id'} %></span>
|
<h3 class="title"><%= %$thread{'title'} %></h3>
|
||||||
<h3 class="title"><%= %$thread{'title'} %></h3>
|
<h4 class="date"><%= %$thread{'date'} %></h4>
|
||||||
<h4 class="date"><%= %$thread{'date'} %></h4>
|
<h5 class="author"><%= %$thread{'author'} %></h5>
|
||||||
<h5 class="author"><%= %$thread{'author'} %></h5>
|
<p class="body"><%= $thread_body %></p>
|
||||||
<p class="body"><%= $thread_body %></p>
|
</article>
|
||||||
</article>
|
</div>
|
||||||
</div>
|
|
||||||
<% } =%>
|
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<div class="name field">
|
<div class="name field">
|
||||||
<%= label_for name => 'Author' %>
|
<%= label_for name => 'Author' %>
|
||||||
<%= text_field name =>'Anonymous', maxlength => 63, minlength => 1 %>
|
<%= text_field name =>'Anonymous', maxlength => 63, minlength => 1 %>
|
||||||
<% if (my $error = validation->error('name')) { =%>
|
<% if (my $error = validation->error('name')) { =%>
|
||||||
<p class="field-with-error">Invalid name: 1 to 63 characters please.</p>
|
<p class="field-with-error">Invalid name: 1 to 63 characters please.</p>
|
||||||
<% } =%>
|
<% } =%>
|
||||||
</div>
|
</div>
|
||||||
<div class="text field">
|
<div class="text field">
|
||||||
|
@ -29,7 +27,7 @@
|
||||||
rows => 6
|
rows => 6
|
||||||
) %>
|
) %>
|
||||||
<% if (my $error = validation->error('post')) { =%>
|
<% if (my $error = validation->error('post')) { =%>
|
||||||
<p class="field-with-error">Invalid post: Up to 4,000 characters only.</p>
|
<p class="field-with-error">Invalid post: Up to 4,000 characters only.</p>
|
||||||
<% } =%>
|
<% } =%>
|
||||||
</div>
|
</div>
|
||||||
<%= submit_button 'Post', class => 'post button' %>
|
<%= submit_button 'Post', class => 'post button' %>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user