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 382 B

il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
1234567891011121314151617
  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. <%= render "shared/header" %>
  11. </div>
  12. <div id="content">
  13. <%= yield %>
  14. </div>
  15. <%= render "shared/footer" %>
  16. </body>
  17. </html>