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.
 
 
 
 
 

31 lines
1.2 KiB

  1. <%!
  2. from datetime import datetime
  3. %>\
  4. <!DOCTYPE html>
  5. <html lang="en">
  6. <head>
  7. <meta charset="utf-8">
  8. <title>
  9. <%block name="title">${g.config.get("corp.name")}</%block>
  10. </title>
  11. <link rel="stylesheet" type="text/css" href="${url_for('staticv', filename='main.css')}" />
  12. <link rel="stylesheet" type="text/css" href="${url_for('staticv', filename='styles/minmatar.css')}" />
  13. % for size in g.eve.image.corp_widths:
  14. <link rel="icon" type="image/png" sizes="${size}x${size}" href="${g.eve.image.corp(g.config.get('corp.id'), size)}" />
  15. % endfor
  16. </head>
  17. <body>
  18. ${next.body()}
  19. <footer>
  20. <div>
  21. <% copyright_year = datetime.now().year %>
  22. Copyright &copy; ${copyright_year} ${g.config.get("corp.copyright")}
  23. &bull;
  24. Running <a href="https://github.com/earwig/calefaction">Calefaction</a> ${g.version}
  25. &bull;
  26. <a href="https://eveonline.com">EVE Online</a> and all related trademarks are property of <a href="https://ccpgames.com">CCP hf</a>.
  27. </div>
  28. </footer>
  29. </body>
  30. </html>