A corporation manager and dashboard for EVE Online
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

30 righe
945 B

  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">CORP_NAME...</%block>
  10. </title>
  11. <link rel="stylesheet" href="${url_for('staticv', filename='style.css')}" type="text/css" />
  12. <!-- FAVICONS... -->
  13. </head>
  14. <body>
  15. ${next.body()}
  16. <footer>
  17. <div>
  18. <%
  19. copyright_year = datetime.now().year
  20. %>
  21. Copyright &copy; ${copyright_year} COPYRIGHT_HOLDER...
  22. &bull;
  23. Running <a href="https://github.com/earwig/calefaction">Calefaction</a> CALEFACTION_VERSION...
  24. &bull;
  25. <a href="https://eveonline.com">EVE Online</a> and all related trademarks are property of <a href="https://ccpgames.com">CCP hf</a>.
  26. </div>
  27. </footer>
  28. </body>
  29. </html>