12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html>
- <head>
- <title><%= blazer_title ? blazer_title : "Blazer" %></title>
- <meta charset="utf-8" />
- <%= stylesheet_link_tag "blazer/application" %>
- <%= javascript_include_tag "blazer/application" %>
- <script>
- var runQueriesPath = <%= run_queries_path.to_json.html_safe %>;
- var cancelQueriesPath = <%= cancel_queries_path.to_json.html_safe %>;
- </script>
- <% if blazer_maps? %>
- <%= stylesheet_link_tag "https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.css" %>
- <%= javascript_include_tag "https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.js" %>
- <% end %>
- <%= csrf_meta_tags %>
- </head>
- <body>
- <div class="container">
- <%= yield %>
- </div>
- </body>
- </html>
|