application.html.erb 341 B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Depot</title>
  5. <%= stylesheet_link_tag 'application', media: 'all',
  6. 'data-turbolinks-track' => true %>
  7. <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
  8. <%= csrf_meta_tags %>
  9. </head>
  10. <body class='<%= controller.controller_name %>'>
  11. <%= yield %>
  12. </body>
  13. </html>