metamaps--metamaps/app/views/items/index.html.erb
2012-09-22 22:39:12 -04:00

12 lines
227 B
Plaintext

<h1>Items</h1>
<div class="items" id="items">
<% @items.each do |item| %>
<%= render item %>
<% end %>
<% if @items.empty? %>
<p><br>Shucks, there are no items.<p>
<% end %>
</div>
<div class="clearfloat"></div>