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.
 
 
 
 
 

20 lines
526 B

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title><%= get_title(yield(:title)) %></title>
  5. <% [32, 64, 128, 256].each do |size| %>
  6. <%= favicon_link_tag corp_logo_url(size), type: 'image/png', sizes: "#{size}x#{size}" %>
  7. <% end %>
  8. <%= stylesheet_link_tag 'application', media: 'all' %>
  9. <%= javascript_include_tag 'application' %>
  10. <%= csrf_meta_tags %>
  11. </head>
  12. <body>
  13. <%= render "shared/header" %>
  14. <main>
  15. <%= yield %>
  16. </main>
  17. <%= render "shared/footer" %>
  18. </body>
  19. </html>