<%= image_tag "osm_logo.png", :alt => t('layouts.logo.alt_text'), :class => 'logo' %> <%= t 'layouts.project_name.h1' %>

<%= content_for :header %>
  • <%= link_to t('layouts.edit'), edit_path, :class => "tab geolink editlink", :id => 'editanchor', :data => { :editor => preferred_editor } %>
      <% Editors::RECOMMENDED_EDITORS.each do |editor| %>
    • <%= link_to t('layouts.edit_with', :editor => t("editor.#{editor}.description")), edit_path(:editor => editor), :data => { :editor => editor }, :class => "geolink editlink" %>
    • <% end %>
  • <%= link_to t('layouts.history'), history_path, :class => 'tab geolink' %>
  • <%= link_to t('layouts.export'), export_path, :class => 'tab geolink' %>
  • <%= link_to t('layouts.gps_traces'), traces_path %>
  • <%= link_to t('layouts.user_diaries'), diary_path %>
  • <%= link_to t('layouts.help'), help_path %>
  • <%= link_to t('layouts.about'), about_path %>
More
  • <%= link_to t('layouts.gps_traces'), traces_path %>
  • <%= link_to t('layouts.user_diaries'), diary_path %>
  • <%= link_to t('layouts.help'), help_path %>
  • <%= link_to t('layouts.about'), about_path %>
<% if @user %>
<%= user_thumbnail_tiny(@user, :size => 25, :width => 25, :height => 25) %><%= render :partial => 'layouts/inbox' %><%= @user.display_name %>
  • <%= link_to inbox_path(:display_name => @user.display_name) do %> <%= number_with_delimiter(@user.new_messages.size) %> <%= t('message.inbox.my_inbox') %> <% end %>
  • <%= link_to t('user.view.my profile'), user_path(:display_name => @user.display_name) %>
  • <%= link_to t('user.view.my settings'), :controller => 'user', :action => 'account', :display_name => @user.display_name %>
  • <%= yield :greeting %>
  • <%= link_to t('layouts.logout'), logout_path(:session => request.session_options[:id], :referer => request.fullpath) %>
<% else %>
  • <%= link_to t('layouts.log_in'), login_path(:referer => request.fullpath) %>
  • <%= link_to t('layouts.sign_up'), user_new_path %>
<% end %>