A corporation manager and dashboard for EVE Online
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

application.html.erb 526 B

il y a 9 ans
il y a 9 ans
il y a 9 ans
12345678910111213141516171819
  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>