67 lines
1.9 KiB
Text
67 lines
1.9 KiB
Text
<div id="mobile_header">
|
|
<div id="header_content">
|
|
<%= yield(:mobile_title) %>
|
|
</div>
|
|
<div id="menu_icon">
|
|
<% if user_unread_notification_count > 0 %>
|
|
<div class="unread-notifications-dot"></div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<div id="mobile_menu">
|
|
<ul>
|
|
<% if not current_user %>
|
|
<li>
|
|
<%= link_to "Home", root_path %>
|
|
</li>
|
|
<% end %>
|
|
<% if current_user %>
|
|
<li class="mobileMenuUser">
|
|
<%= image_tag current_user.image.url(:sixtyfour), :size => "32x32" %>
|
|
<span><%= current_user.name %></span>
|
|
</li>
|
|
<li>
|
|
<%= link_to "New Map", new_map_path %>
|
|
</li>
|
|
<li>
|
|
<%= link_to "My Maps", explore_mine_path, :data => { :router => 'true'} %>
|
|
</li>
|
|
<li>
|
|
<%= link_to "Shared With Me", explore_shared_path, :data => { :router => 'true'} %>
|
|
</li>
|
|
<li>
|
|
<%= link_to "Starred By Me", explore_starred_path, :data => { :router => 'true'} %>
|
|
</li>
|
|
<% end %>
|
|
<li>
|
|
<%= link_to "All Maps", explore_active_path, :data => { :router => 'true'} %>
|
|
</li>
|
|
<% if not current_user %>
|
|
<li>
|
|
<%= link_to "Featured Maps", explore_featured_path, :data => { :router => 'true'} %>
|
|
</li>
|
|
<% end %>
|
|
<% if not current_user %>
|
|
<li>
|
|
<%= link_to "Request Invite", request_path %>
|
|
</li>
|
|
<li>
|
|
<%= link_to "Login", sign_in_path %>
|
|
</li>
|
|
<% end %>
|
|
<% if current_user %>
|
|
<li>
|
|
<%= link_to "Account", edit_user_url(current_user) %>
|
|
</li>
|
|
<li class="notifications">
|
|
<%= link_to "Notifications", notifications_path %>
|
|
<% if user_unread_notification_count > 0 %>
|
|
<div class="unread-notifications-dot"></div>
|
|
<% end %>
|
|
</li>
|
|
<li>
|
|
<%= link_to "Sign Out", "/logout", id: "Logout" %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|