openstreetmap-website/app/views/site/id.html.erb

20 lines
531 B
Text

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<%= stylesheet_link_tag "id" %>
<!--[if !IE || gte IE 9]><!-->
<%= javascript_include_tag "id" %>
<!-- <![endif]-->
</head>
<body>
<% data = {}
if Settings.key?(:id_application)
token = current_user.oauth_token(Settings.id_application)
data[:token] = token.token
end
data[:locale] = ID::LOCALES.preferred(preferred_languages).to_s
data[:asset_map] = assets("iD").to_json %>
<%= tag.div "", :id => "id-container", :data => data %>
</body>
</html>