2012-12-25 23:29:20 +00:00
|
|
|
<h1 class="index"><% if @user %><%= @user.name %>'s<% end %> 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-12-25 23:29:20 +00:00
|
|
|
<p class="empty"><br>Shucks, there are no topics. <% if authenticated? %><%= link_to "Create some if you want.", console_url %><% end %></p>
|
2012-09-23 02:39:12 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
2012-12-25 23:29:20 +00:00
|
|
|
<div class="clearfloat"></div>
|