2012-12-25 23:29:20 +00:00
|
|
|
<h1 class="index"><% if @user %><%= @user.name %>'s<% end %> Maps</h1>
|
2012-10-26 10:04:52 +00:00
|
|
|
|
|
|
|
<div class="maps" id="cards">
|
|
|
|
<% @maps.each do |map| %>
|
|
|
|
<%= render map %>
|
|
|
|
<% end %>
|
|
|
|
<% if @maps.empty? %>
|
2012-12-25 23:29:20 +00:00
|
|
|
<p class="empty"><br>Shucks, there are no maps. <% if authenticated? %><%= link_to "Create one if you want.", new_map_url %><% end %></p>
|
2012-10-26 10:04:52 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="clearfloat"></div>
|