Listing posts

<%= form_tag posts_path, :method => 'get' do %> Search : <%= text_field_tag :search, params[:search] %> <%= submit_tag "Search", :name => nil %> <% end %> <% @posts.each do |post| %> <% end %>
Title Content
<%= post.title %> <%= post.content %> <%= link_to 'Show', post %> <%= link_to 'Edit', edit_post_path(post) %> <%= link_to 'Destroy', post, confirm: 'Are you sure?', method: :delete %>

<%= link_to 'New Post', new_post_path %>