application.html.erb 582 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><%= title ? title : "Blazer" %></title>
  5. <meta charset="utf-8" />
  6. <%= stylesheet_link_tag "blazer/application" %>
  7. <%= javascript_include_tag "//www.google.com/jsapi", "blazer/application" %>
  8. <% if blazer_maps? %>
  9. <%= stylesheet_link_tag "https://api.mapbox.com/mapbox.js/v2.2.2/mapbox.css" %>
  10. <%= javascript_include_tag "https://api.mapbox.com/mapbox.js/v2.2.2/mapbox.js" %>
  11. <% end %>
  12. <%= csrf_meta_tags %>
  13. </head>
  14. <body>
  15. <div class="container">
  16. <%= yield %>
  17. </div>
  18. </body>
  19. </html>