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.
 
 
 
 
 

30 lignes
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>