<% if !authenticated? %>
Welcome to Metamaps
<% elsif authenticated? %>
Welcome back, <%= @current.name.split[0...1][0] %>!
<% end %>

<% if !authenticated? %>
<% end %>
<% if !authenticated? %>
Request Invite
Learn More
<% end %>
<% if !authenticated? %>
explore featured maps from our community
<% elsif authenticated? %>
explore recently active maps
<% end %>
<% @maps.each_with_index do |map, index| %>
<% first = index == 0 ? true : false %>
<%= render :partial => 'maps/homemap', :locals => { :map => map, :first => first } %>
<% end %>