application.html.erb 342 B

1234567891011121314151617
  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 "blazer/application" %>
  8. <%= csrf_meta_tags %>
  9. </head>
  10. <body>
  11. <div class="container">
  12. <%= yield %>
  13. </div>
  14. </body>
  15. </html>