metamaps--metamaps/app/views/items/index.html.erb
2012-10-21 14:32:17 -04:00

13 lines
271 B
Plaintext

<h1>All Topics</h1>
<div class="items" id="cards">
<% @items.each do |item| %>
<%= render item %>
<% end %>
<% if @items.empty? %>
<p><br>Shucks, there are no topics.<p>
<% end %>
</div>
<div class="clearfloat"></div>
<%= render :partial => 'items/new' %>