1 <% content_for :head do %>
2 <%= javascript_include_tag "index" %>
5 <% content_for(:body_class) { "map-layout" } %>
7 <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
8 <% content_for :greeting do %>
9 <%= link_to t("layouts.home"),
12 :class => "set_position",
13 :data => { :lat => @user.home_lat,
14 :lon => @user.home_lon,
19 <% content_for :header do %>
20 <%= render :partial => "layouts/search", :locals => { :autofocus => false } %>
23 <% content_for :content do %>
25 <%= render :partial => "layouts/search", :locals => { :autofocus => true } %>
27 <% if STATUS == :database_offline or STATUS == :api_offline %>
28 <p class="error"><%= t 'layouts.osm_offline' %></p>
29 <% elsif STATUS == :database_readonly or STATUS == :api_readonly %>
30 <p class="error"><%= t 'layouts.osm_read_only' %></p>
34 <a href="http://www.stateofthemap.org/?l=en"><%= image_tag "sotm.png" %></a>
36 <a><span class="icon close"></span></a>
37 <a href="http://www.stateofthemap.org/?l=en"><%= t 'layouts.sotm_header' %></a>
39 <p><a href="http://www.stateofthemap.org/?l=en">
40 <%= t 'layouts.sotm_line_1' %>
42 <%= t 'layouts.sotm_line_2' %>
44 <%= t 'layouts.sotm_line_3' %>
49 <%= render :partial => "layouts/flash" %>
52 <div id="browse_status"></div>
54 <div id="sidebar_loader" style="display: none;">
55 <img alt="<%= t('browse.start_rjs.loading') %>" class="loader" src="<%= image_path("searching.gif") %>">
58 <div id="sidebar_content">
64 <h2><a><span class="icon close"></span></a><%= t 'layouts.intro_header' %></h2>
65 <p><%= t 'layouts.intro_text' %></p>
66 <a class="button learn-more" href="<%= about_path %>"><%= t('layouts.learn_more') %></a>
67 <a class="button sign-up" href="<%= user_new_path %>"><%= t('layouts.start_mapping') %></a>
74 <p><%= t 'site.index.js_1' %></p>
75 <p><%= t 'site.index.js_2' %></p>
82 <div id="map" tabindex="2">
85 <div id="attribution">
88 <td class="attribution_license"><%= t 'site.index.license.license_url' %></td>
89 <td class="attribution_project"><%= t 'site.index.license.project_url' %></td>
92 <td colspan="2" class="attribution_notice"><%= t 'site.index.license.copyright' %></td>
98 <%= render :template => 'layouts/site' %>