application.html.erb 664 B

123456789101112131415161718192021222324
  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. <script>
  8. var Chartkick = {smarterDates: true, smarterDiscrete: true};
  9. </script>
  10. <%= javascript_include_tag "blazer/application" %>
  11. <% if blazer_maps? %>
  12. <%= stylesheet_link_tag "https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.css" %>
  13. <%= javascript_include_tag "https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.js" %>
  14. <% end %>
  15. <%= csrf_meta_tags %>
  16. </head>
  17. <body>
  18. <div class="container">
  19. <%= yield %>
  20. </div>
  21. </body>
  22. </html>