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

13 lines
159 B
Plaintext

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