Listing bikes

<% @bikes.each do |bike| %> <% end %>
<%= link_to 'Show', bike %> <%= link_to 'Edit', edit_bike_path(bike) %> <%= link_to 'Destroy', bike, method: :delete, data: { confirm: 'Are you sure?' } %>

<%= link_to 'New Bike', new_bike_path %>