1 <header class="closed">
 
   3     <a href="<%= root_path %>" class="geolink">
 
   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>
 
  10     <%= content_for :header %>
 
  12       <li id="edit_tab" class="dropdown <%= current_page_class(edit_path) %>">
 
  13         <%= link_to t('layouts.edit'), edit_path, :class => "tab geolink editlink",
 
  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 editlink" %>
 
  28       <li id="history_tab" class="<%= current_page_class(history_path) %>">
 
  29         <%= link_to t('layouts.history'), history_path, :class => 'tab geolink' %>
 
  31       <li id="export_tab" class="<%= current_page_class(export_path) %>">
 
  32         <%= link_to t('layouts.export'), export_path, :class => 'tab geolink' %>
 
  36   <nav class='secondary'>
 
  38       <li class="compact-hide <%= current_page_class(traces_path) %>"><%= link_to t('layouts.gps_traces'), traces_path %></li>
 
  39       <li class="compact-hide <%= current_page_class(diary_path) %>"><%= link_to t('layouts.user_diaries'), diary_path %></li>
 
  40       <li class="compact-hide <%= current_page_class(copyright_path) %>"><%= link_to t('layouts.copyright'), copyright_path %></li>
 
  41       <li class="compact-hide <%= current_page_class(help_path) %>"><%= link_to t('layouts.help'), help_path %></li>
 
  42       <li class="compact-hide <%= current_page_class(about_path) %>"><%= link_to t('layouts.about'), about_path %></li>
 
  43       <li id="compact-secondary-nav" class="dropdown">
 
  44         <a class="dropdown-toggle" data-toggle="dropdown" href="#">More <b class="caret"></b></a>
 
  45         <ul class="dropdown-menu">
 
  46           <li class="<%= current_page_class(traces_path) %>"><%= link_to t('layouts.gps_traces'), traces_path %></li>
 
  47           <li class="<%= current_page_class(diary_path) %>"><%= link_to t('layouts.user_diaries'), diary_path %></li>
 
  48           <li class="<%= current_page_class(help_path) %>"><%= link_to t('layouts.help'), help_path %></li>
 
  49           <li class="<%= current_page_class(about_path) %>"><%= link_to t('layouts.about'), about_path %></li>
 
  50           <li class="<%= current_page_class(copyright_path) %>"><%= link_to t('layouts.copyright'), copyright_path %></li>
 
  54     <% if @user && @user.id %>
 
  55       <div class='dropdown user-menu logged-in'>
 
  56         <a class='dropdown-toggle' data-toggle='dropdown' href="#">
 
  57           <%= user_thumbnail_tiny(@user, :size => 25, :width => 25, :height => 25)
 
  58           %><%= render :partial => 'layouts/inbox'
 
  59         %><span class="user-button"><span class='username'><%= @user.display_name %></span>
 
  60           <b class="caret"></b></span>
 
  62         <ul class='dropdown-menu'>
 
  64             <%= link_to inbox_path(:display_name => @user.display_name) do %>
 
  65               <span class='count-number'><%= number_with_delimiter(@user.new_messages.size) %></span>
 
  66               <%= t('message.inbox.my_inbox') %>
 
  70             <%= link_to t('user.view.my profile'), user_path(:display_name => @user.display_name) %>
 
  73             <%= link_to t('user.view.my settings'), :controller => 'user', :action => 'account', :display_name => @user.display_name %>
 
  75           <li class="divider"></li>
 
  77             <%= yield :greeting %>
 
  80             <%= link_to t('layouts.logout'), logout_path(:session => request.session_options[:id], :referer => request.fullpath) %>
 
  85       <ul class="user-menu clearfix">
 
  86         <li><%= link_to t('layouts.log_in'), login_path(:referer => request.fullpath) %></li>
 
  87         <li><%= link_to t('layouts.sign_up'), user_new_path %></li>