]> git.openstreetmap.org Git - rails.git/blob - app/views/layouts/map.html.erb
Fix note formatting issues
[rails.git] / app / views / layouts / map.html.erb
1 <% content_for :head do %>
2   <%= javascript_include_tag "index" %>
3 <% end %>
4
5 <% content_for(:body_class) { "map-layout" } %>
6
7 <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
8   <% content_for :greeting do %>
9     <%= link_to t("layouts.home"),
10                 "#",
11                 :id => "homeanchor",
12                 :class => "set_position",
13                 :data => { :lat => @user.home_lat,
14                            :lon => @user.home_lon,
15                            :zoom => 15 } %>
16   <% end %>
17 <% end %>
18
19 <% content_for :content do %>
20   <div id="sidebar">
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') } %>
27       </div>
28     <% end %>
29
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>
34     <% end %>
35
36     <div id="browse_status"></div>
37
38     <div id="sidebar_content">
39       <%= render :partial => "layouts/flash" %>
40       <%= yield %>
41     </div>
42   </div>
43
44   <noscript>
45     <div id="noscript">
46       <p><%= t 'site.index.js_1' %></p>
47       <p><%= t 'site.index.js_2' %></p>
48     </div>
49   </noscript>
50
51   <div id="map-ui">
52   </div>
53
54   <div id="map" tabindex="2">
55   </div>
56
57   <div id="attribution">
58     <table width="100%">
59       <tr>
60         <td class="attribution_license"><%= t 'site.index.license.license_url' %></td>
61         <td class="attribution_project"><%= t 'site.index.license.project_url' %></td>
62       </tr>
63       <tr>
64         <td colspan="2" class="attribution_notice"><%= t 'site.index.license.copyright' %></td>
65       </tr>
66     </table>
67   </div>
68 <% end %>
69
70 <%= render :template => 'layouts/site' %>