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 :content do %>
21 <%= form_tag search_path, :id => "search_form" do %>
22 <%= submit_tag t('site.search.submit_text') %>
23 <div id='query_wrapper'>
24 <%= text_field_tag :query, params[:query],
25 :placeholder => t('site.search.search') %>
26 <%= link_to t('site.search.where_am_i'), '#', { :id => "describe_location", :title => t('site.search.where_am_i_title') } %>
30 <% if STATUS == :database_offline or STATUS == :api_offline %>
31 <p class="error"><%= t 'layouts.osm_offline' %></p>
32 <% elsif STATUS == :database_readonly or STATUS == :api_readonly %>
33 <p class="error"><%= t 'layouts.osm_read_only' %></p>
36 <div id="browse_status"></div>
38 <div id="sidebar_content">
39 <%= render :partial => "layouts/flash" %>
46 <p><%= t 'site.index.js_1' %></p>
47 <p><%= t 'site.index.js_2' %></p>
54 <div id="map" tabindex="2">
57 <div id="attribution">
60 <td class="attribution_license"><%= t 'site.index.license.license_url' %></td>
61 <td class="attribution_project"><%= t 'site.index.license.project_url' %></td>
64 <td colspan="2" class="attribution_notice"><%= t 'site.index.license.copyright' %></td>
70 <%= render :template => 'layouts/site' %>