bouquins-ror/app/views/books/index.html.erb

15 lines
179 B
Plaintext

<h1>All books</h1>
<%= will_paginate %>
<ul class="books">
<% @books.each do |book| %>
<li>
<%= link_to book.title, book %>
</li>
<% end %>
</ul>
<%= will_paginate %>