1 <header class="closed">
3 <a href="<%= root_path %>" class="geolink layers">
4 <%= image_tag "osm_logo.png", :alt => t('layouts.logo.alt_text'), :class => 'logo' %>
5 <%= t 'layouts.project_name.h1' %>
8 <a href="#" id="menu-icon"></a>
11 <li id="view_tab" class="<%= current_page_class(root_path) %>">
12 <%= link_to t('layouts.view'), root_path, :class => 'tab geolink layers' %>
14 <li id="edit_tab" class="mobile-hide dropdown <%= current_page_class(edit_path) %>">
15 <%= link_to t('layouts.edit'), edit_path, :class => "tab geolink object",
17 :data => { :editor => preferred_editor }
18 %><a class='dropdown-toggle' data-toggle='dropdown' href='#'><b class="caret"></b></a>
19 <ul class='dropdown-menu'>
20 <% Editors::RECOMMENDED_EDITORS.each do |editor| %>
22 <%= link_to t('layouts.edit_with', :editor => t("editor.#{editor}.description")),
23 edit_path(:editor => editor),
24 :data => { :editor => editor },
25 :class => "geolink object" %>
30 <li id="history_tab" class="<%= current_page_class(history_path) %>">
31 <%= link_to t('layouts.history'), history_path, :class => 'tab geolink' %>
33 <li id="export_tab" class="mobile-hide <%= current_page_class(export_path) %>">
34 <%= link_to t('layouts.export'), export_path, :class => 'tab geolink' %>
38 <nav class='secondary'>
40 <li class="<%= current_page_class(traces_path) %>"><%= link_to t('layouts.gps_traces'), traces_path %></li>
41 <li class="<%= current_page_class(diary_path) %>"><%= link_to t('layouts.user_diaries'), diary_path %></li>
42 <li class="<%= current_page_class(help_path) %>"><%= link_to t('layouts.help'), help_path %></li>
43 <li class="<%= current_page_class(about_path) %>"><%= link_to t('layouts.about'), about_path %></li>
46 <div class='dropdown user-menu logged-in'>
47 <a class='dropdown-toggle' data-toggle='dropdown' href="#">
48 <%= user_thumbnail_tiny(@user, :size => 25, :width => 25, :height => 25)
49 %><%= render :partial => 'layouts/inbox'
50 %><span class="user-button"><span class='username'><%= @user.display_name %></span>
51 <b class="caret"></b></span>
53 <ul class='dropdown-menu'>
55 <%= link_to inbox_path(:display_name => @user.display_name) do %>
56 <span class='count-number'><%= number_with_delimiter(@user.new_messages.size) %></span>
57 <%= t('message.inbox.my_inbox') %>
61 <%= link_to t('user.view.my profile'), user_path(:display_name => @user.display_name) %>
64 <%= link_to t('user.view.my settings'), :controller => 'user', :action => 'account', :display_name => @user.display_name %>
66 <li class="divider"></li>
68 <%= yield :greeting %>
71 <%= link_to t('layouts.logout'), logout_path(:session => request.session_options[:id], :referer => request.fullpath) %>
76 <ul class="user-menu clearfix">
77 <li><%= link_to t('layouts.log_in'), login_path(:referer => request.fullpath) %></li>
78 <li><%= link_to t('layouts.sign_up'), user_new_path %></li>