]> git.openstreetmap.org Git - rails.git/blob - app/views/layouts/map.html.erb
a7d00f53fb4e85852e7c63c2ad42071577523225
[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     <%= render :partial => "layouts/search" %>
22
23     <% if STATUS == :database_offline or STATUS == :api_offline %>
24       <p class="error"><%= t 'layouts.osm_offline' %></p>
25     <% elsif STATUS == :database_readonly or STATUS == :api_readonly %>
26       <p class="error"><%= t 'layouts.osm_read_only' %></p>
27     <% end %>
28
29     <div id="browse_status"></div>
30
31     <div id="sidebar_content">
32       <%= render :partial => "layouts/flash" %>
33       <%= yield %>
34     </div>
35   </div>
36
37   <noscript>
38     <div id="noscript">
39       <p><%= t 'site.index.js_1' %></p>
40       <p><%= t 'site.index.js_2' %></p>
41     </div>
42   </noscript>
43
44   <div id="map-ui">
45   </div>
46
47   <div id="map" tabindex="2">
48   </div>
49
50   <div id="attribution">
51     <table width="100%">
52       <tr>
53         <td class="attribution_license"><%= t 'site.index.license.license_url' %></td>
54         <td class="attribution_project"><%= t 'site.index.license.project_url' %></td>
55       </tr>
56       <tr>
57         <td colspan="2" class="attribution_notice"><%= t 'site.index.license.copyright' %></td>
58       </tr>
59     </table>
60   </div>
61 <% end %>
62
63 <%= render :template => 'layouts/site' %>