summaryrefslogtreecommitdiff
path: root/app/views/items/index.html.erb
blob: 5d004d3a07236eabcf901857e953b42ded320fcd (plain)
1
2
3
4
5
6
7
8
<h1 class="text-3xl mb-4">Items</h1>

<% @items.each do |item| %>
  <div class="my-2">
    <div><%= link_to item.name, item_path(item) %></div>
    <p class="italic"><%= item.description %></p>
  </div>
<% end %>