<% if type == 'F' %>
<% else %> <%= display_comments_loop %>

Make a comment about <%= display_title %>

<% if flash[:notice] %>
<%= flash[:notice] %>
<% end %> <%= form_for [@new_comment] do |f| %>
<%= f.hidden_field :post_id, :value => @content.id %> <%= f.hidden_field :parent_id, :value => nil, :id => 'comment_comment_parent' %>
<%= f.label :author %> <%= f.text_field :author, :value => "", size: 40 %>
<%= f.label :email %> <%= f.text_field :email, :value => "", size: 40 %>
<%= f.label :website %> <%= f.text_field :website, :value => "" %>
<%= f.label :comment %> <%= f.text_area :comment, :value => "" %>
<%= f.submit "Submit Comment", :class => 'btn orangeBtn' %>
<% end %>
<% end %>