Remove these old templates
This commit is contained in:
parent
5fa2e9e938
commit
8a99330eeb
|
@ -1,34 +0,0 @@
|
|||
% layout 'main';
|
||||
% title 'New Remark';
|
||||
<h2><%= title %></h2>
|
||||
<div class="threads">
|
||||
<article class="thread">
|
||||
<span class="id">#<%= %$thread{'id'} %></span>
|
||||
<h3 class="title"><%= %$thread{'title'} %></h3>
|
||||
<h4 class="date"><%= %$thread{'date'} %></h4>
|
||||
<h5 class="author"><%= %$thread{'author'} %></h5>
|
||||
<p class="body"><%= %$thread{'body'} %></p>
|
||||
</article>
|
||||
</div>
|
||||
<form method="post">
|
||||
<div class="name field">
|
||||
<%= label_for name => 'Author' %>
|
||||
<%= text_field name =>'Anonymous', maxlength => 63, minlength => 1 %>
|
||||
<% if (my $error = validation->error('name')) { =%>
|
||||
<p class="field-with-error">Invalid name: 1 to 63 characters please.</p>
|
||||
<% } =%>
|
||||
</div>
|
||||
<div class="text field">
|
||||
<%= label_for post => 'Text' %>
|
||||
<%= text_area 'post', (
|
||||
maxlength => 4000,
|
||||
minlength => 2,
|
||||
required => 'true',
|
||||
rows => 6
|
||||
) %>
|
||||
<% if (my $error = validation->error('post')) { =%>
|
||||
<p class="field-with-error">Invalid post: Up to 4,000 characters only.</p>
|
||||
<% } =%>
|
||||
</div>
|
||||
<%= submit_button 'Post', class => 'post button' %>
|
||||
</form>
|
|
@ -1,32 +0,0 @@
|
|||
% layout 'main';
|
||||
% title 'New Thread';
|
||||
<h2><%= title %></h2>
|
||||
<form method="post">
|
||||
<div class="name field">
|
||||
<%= label_for name => 'Author' %>
|
||||
<%= text_field name =>'Anonymous', maxlength => 63, minlength => 1 %>
|
||||
<% if (my $error = validation->error('name')) { =%>
|
||||
<p class="field-with-error">Invalid name: 1 to 63 characters please.</p>
|
||||
<% } =%>
|
||||
</div>
|
||||
<div class="title field">
|
||||
<%= label_for title => 'Title' %>
|
||||
<%= text_field 'title', maxlength => 127, minlength => 1 %>
|
||||
<% if (my $error = validation->error('title')) { =%>
|
||||
<p class="field-with-error">Invalid title: 1 to 127 characters please.</p>
|
||||
<% } =%>
|
||||
</div>
|
||||
<div class="text field">
|
||||
<%= label_for post => 'Text' %>
|
||||
<%= text_area 'post', (
|
||||
maxlength => 4000,
|
||||
minlength => 2,
|
||||
required => 'true',
|
||||
rows => 6
|
||||
) %>
|
||||
<% if (my $error = validation->error('post')) { =%>
|
||||
<p class="field-with-error">Invalid post: Up to 4,000 characters only.</p>
|
||||
<% } =%>
|
||||
</div>
|
||||
<%= submit_button 'Post', class => 'post button' %>
|
||||
</form>
|
Loading…
Reference in a new issue