metamaps--metamaps/app/views/items/index.html.erb

12 lines
227 B
Plaintext
Raw Normal View History

2012-09-23 02:39:12 +00:00
<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>