A corporation manager and dashboard for EVE Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
445 B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><%= get_title(yield(:title)) %></title>
  5. <%= stylesheet_link_tag 'application', media: 'all' %>
  6. <%= javascript_include_tag 'application' %>
  7. <%= csrf_meta_tags %>
  8. </head>
  9. <body>
  10. <div id="header">
  11. <%= render "shared/header" %>
  12. </div>
  13. <div id="content">
  14. <%= yield %>
  15. </div>
  16. <div id="footer">
  17. <%= render "shared/footer" %>
  18. </div>
  19. </body>
  20. </html>