Listing Books

<%= for book <- @books do %> <%# comment %> <% end %>
Title Summary
<%= book.title %> <%= book.content %> <%= link "Show", to: book_path(@conn, :show, book) %> <%= link "Edit", to: book_path(@conn, :edit, book) %> <%= link "Delete", to: book_path(@conn, :delete, book), method: :delete, data: [confirm: "Are you sure?"] %>

<%= link "New book", to: book_path(@conn, :new) %>