hello-learning/bookstore/app/views/books/index.html.erb
2019-10-10 10:15:45 -05:00

13 lines
310 B
Text

<h1>Welcome to My Super Rad Bookstore!</h1>
<ul>
<% @books.each do |book| %>
<li>
<%= link_to(book.title, book_path(book)) %>
by
<em><%= book.author %></em>
<% end %>
</ul>
<% if session[:user_id].present? %>
<%= link_to("Add a book!", new_book_path, class: "button") %>
<% end %>