metamaps--metamaps/app/views/items/index.html.erb
2012-10-17 20:51:54 -04:00

12 lines
233 B
Plaintext

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