application.html.erb 743 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><%= blazer_title ? blazer_title : "Blazer" %></title>
  5. <meta charset="utf-8" />
  6. <%= stylesheet_link_tag "blazer/application" %>
  7. <%= javascript_include_tag "blazer/application" %>
  8. <script>
  9. var runQueriesPath = <%= run_queries_path.to_json.html_safe %>;
  10. var cancelQueriesPath = <%= cancel_queries_path.to_json.html_safe %>;
  11. </script>
  12. <% if blazer_maps? %>
  13. <%= stylesheet_link_tag "https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.css" %>
  14. <%= javascript_include_tag "https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.js" %>
  15. <% end %>
  16. <%= csrf_meta_tags %>
  17. </head>
  18. <body>
  19. <div class="container">
  20. <%= yield %>
  21. </div>
  22. </body>
  23. </html>