123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html>
- <head>
- <title><%= title ? title : "Blazer" %></title>
- <meta charset="utf-8" />
- <%= stylesheet_link_tag "blazer/application" %>
- <%= javascript_include_tag "//www.google.com/jsapi", "blazer/application" %>
- <% if blazer_maps? %>
- <%= stylesheet_link_tag "https://api.mapbox.com/mapbox.js/v2.2.2/mapbox.css" %>
- <%= javascript_include_tag "https://api.mapbox.com/mapbox.js/v2.2.2/mapbox.js" %>
- <% end %>
- <%= csrf_meta_tags %>
- </head>
- <body>
- <div class="container">
- <%= yield %>
- </div>
- </body>
- </html>
|