New post

<% form_for(@post) do |f| %> <%= f.error_messages %>

<%= f.label :title %>
<% a = f.text_field :title %>

<%= f.label :body %>
<%#= f.text_area :body %>

<%= f.submit 'Create' %>

<% end %> <%= link_to 'Back', posts_path %>