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' %>
10 <li id="view_tab" class="<%= current_page_class(root_path) %>">
11 <%= link_to t('layouts.view'), root_path, :class => 'tab geolink layers' %>
12 </li><li id="edit_tab" class="dropdown <%= current_page_class(edit_path) %>">
13 <%= link_to t('layouts.edit'), edit_path, :class => "tab geolink object",
15 :data => { :editor => preferred_editor }
16 %><a class='dropdown-toggle' data-toggle='dropdown' href='#'><b class="caret"></b></a>
17 <ul class='dropdown-menu'>
18 <% Editors::RECOMMENDED_EDITORS.each do |editor| %>
20 <%= link_to t('layouts.edit_with', :editor => t("editor.#{editor}.description")),
21 edit_path(:editor => editor),
22 :data => { :editor => editor },
23 :class => "geolink object" %>
27 </li><li id="history_tab" class="<%= current_page_class(history_path) %>">
28 <%= link_to t('layouts.history'), history_path, :class => 'tab geolink' %>
29 </li><li id="export_tab" class="<%= current_page_class(export_path) %>">
30 <%= link_to t('layouts.export'), export_path, :class => 'tab geolink' %>
34 <nav class='secondary'>
36 <li class="<%= current_page_class(traces_path) %>"><%= link_to t('layouts.gps_traces'), traces_path %></li>
37 <li class="<%= current_page_class(diary_path) %>"><%= link_to t('layouts.user_diaries'), diary_path %></li>
38 <li class="<%= current_page_class(help_path) %>"><%= link_to t('layouts.help'), help_path %></li>
39 <li class="<%= current_page_class(about_path) %>"><%= link_to t('layouts.about'), about_path %></li>
42 <div class='dropdown user-menu logged-in'>
43 <a class='dropdown-toggle' data-toggle='dropdown' href="#">
44 <%= user_thumbnail_tiny(@user, :size => 25, :width => 25, :height => 25)
45 %><%= render :partial => 'layouts/inbox'
46 %><span class="user-button"><span class='username'><%= @user.display_name %></span>
47 <b class="caret"></b></span>
49 <ul class='dropdown-menu'>
51 <%= link_to inbox_path(:display_name => @user.display_name) do %>
52 <span class='count-number'><%= number_with_delimiter(@user.new_messages.size) %></span>
53 <%= t('message.inbox.my_inbox') %>
57 <%= link_to t('user.view.my profile'), user_path(:display_name => @user.display_name) %>
60 <%= link_to t('user.view.my settings'), :controller => 'user', :action => 'account', :display_name => @user.display_name %>
62 <li class="divider"></li>
64 <%= yield :greeting %>
67 <%= link_to t('layouts.logout'), logout_path(:session => request.session_options[:id], :referer => request.fullpath) %>
72 <ul class="user-menu">
73 <li><%= link_to t('layouts.log_in'), login_path(:referer => request.fullpath) %></li>
74 <li><%= link_to t('layouts.sign_up'), user_new_path %></li>