Listing Books

<% @books.each do |book| %> <%# comment %> <% end %>
Title Summary
<%= book.title %> <%= book.content %> <%= link_to 'Show', book %> <%= link_to 'Edit', edit_book_path(book) %> <%= link_to 'Remove', book, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New book', new_book_path %>