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.
 
 
 
 
 

57 lines
2.1 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>
  6. <%block name="title">${g.config.get("corp.name") | h}</%block>
  7. </title>
  8. <link rel="stylesheet" type="text/css" href="${url_for('staticv', filename='main.css')}" />
  9. % if g.config.get("style"):
  10. <% stylesheet = "styles/{}.css".format(g.config.get("style")) %>
  11. <link rel="stylesheet" type="text/css" href="${url_for('staticv', filename=stylesheet)}" />
  12. % endif
  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. <%block name="header">
  19. <header>
  20. <div>
  21. <div class="left">
  22. <%block name="lefthead">
  23. <a href="/">
  24. <img id="corp-masthead" class="aligned" src="${g.eve.image.corp(g.config.get('corp.id'), 256)}"/>
  25. </a>
  26. <a href="/" class="aligned">${g.config.get("corp.name") | h}</a>
  27. </%block>
  28. </div><!--
  29. --><div class="right">
  30. <%block name="righthead"/>
  31. </div>
  32. </div>
  33. </header>
  34. </%block>
  35. <%block name="container">
  36. <div id="container">
  37. <div>
  38. <main>
  39. ${next.body()}
  40. </main>
  41. </div>
  42. </div>
  43. </%block>
  44. <%block name="footer">
  45. <footer>
  46. <div>
  47. YC ${g.eve.clock.now()}
  48. &bull;
  49. Running <a href="https://github.com/earwig/calefaction">Calefaction</a> ${g.version}
  50. &bull;
  51. <a href="https://eveonline.com">EVE Online</a> and all related trademarks are property of <a href="https://ccpgames.com">CCP hf</a>.
  52. </div>
  53. </footer>
  54. </%block>
  55. </body>
  56. </html>