From 8a99330eeba5fa1cbc666751a5200db7a0840fa0 Mon Sep 17 00:00:00 2001 From: swaggboi Date: Wed, 24 Aug 2022 00:36:44 -0400 Subject: [PATCH] Remove these old templates --- templates/post_remark.html.ep | 34 ---------------------------------- templates/post_thread.html.ep | 32 -------------------------------- 2 files changed, 66 deletions(-) delete mode 100644 templates/post_remark.html.ep delete mode 100644 templates/post_thread.html.ep diff --git a/templates/post_remark.html.ep b/templates/post_remark.html.ep deleted file mode 100644 index ff5a8ed..0000000 --- a/templates/post_remark.html.ep +++ /dev/null @@ -1,34 +0,0 @@ -% layout 'main'; -% title 'New Remark'; -

<%= title %>

-
-
- #<%= %$thread{'id'} %> -

<%= %$thread{'title'} %>

-

<%= %$thread{'date'} %>

-
<%= %$thread{'author'} %>
-

<%= %$thread{'body'} %>

-
-
-
-
- <%= label_for name => 'Author' %> - <%= text_field name =>'Anonymous', maxlength => 63, minlength => 1 %> - <% if (my $error = validation->error('name')) { =%> -

Invalid name: 1 to 63 characters please.

- <% } =%> -
-
- <%= label_for post => 'Text' %> - <%= text_area 'post', ( - maxlength => 4000, - minlength => 2, - required => 'true', - rows => 6 - ) %> - <% if (my $error = validation->error('post')) { =%> -

Invalid post: Up to 4,000 characters only.

- <% } =%> -
- <%= submit_button 'Post', class => 'post button' %> -
diff --git a/templates/post_thread.html.ep b/templates/post_thread.html.ep deleted file mode 100644 index aef4b41..0000000 --- a/templates/post_thread.html.ep +++ /dev/null @@ -1,32 +0,0 @@ -% layout 'main'; -% title 'New Thread'; -

<%= title %>

-
-
- <%= label_for name => 'Author' %> - <%= text_field name =>'Anonymous', maxlength => 63, minlength => 1 %> - <% if (my $error = validation->error('name')) { =%> -

Invalid name: 1 to 63 characters please.

- <% } =%> -
-
- <%= label_for title => 'Title' %> - <%= text_field 'title', maxlength => 127, minlength => 1 %> - <% if (my $error = validation->error('title')) { =%> -

Invalid title: 1 to 127 characters please.

- <% } =%> -
-
- <%= label_for post => 'Text' %> - <%= text_area 'post', ( - maxlength => 4000, - minlength => 2, - required => 'true', - rows => 6 - ) %> - <% if (my $error = validation->error('post')) { =%> -

Invalid post: Up to 4,000 characters only.

- <% } =%> -
- <%= submit_button 'Post', class => 'post button' %> -