2012-10-26 10:04:52 +00:00
|
|
|
<h1>Topics</h1>
|
2012-09-23 02:39:12 +00:00
|
|
|
|
2012-10-21 18:32:17 +00:00
|
|
|
<div class="items" id="cards">
|
2012-09-23 02:39:12 +00:00
|
|
|
<% @items.each do |item| %>
|
|
|
|
<%= render item %>
|
|
|
|
<% end %>
|
|
|
|
<% if @items.empty? %>
|
2012-10-18 00:51:54 +00:00
|
|
|
<p><br>Shucks, there are no topics.<p>
|
2012-09-23 02:39:12 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="clearfloat"></div>
|
2012-10-21 17:19:59 +00:00
|
|
|
|
2012-10-26 10:04:52 +00:00
|
|
|
<% if authenticated? %>
|
|
|
|
<%= render :partial => 'items/new' %>
|
|
|
|
<% end %>
|