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.
 
 
 
 
 

52 lines
2.0 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. <link rel="stylesheet" type="text/css" href="${url_for('staticv', filename='styles/minmatar.css')}" />
  10. % for size in g.eve.image.corp_widths:
  11. <link rel="icon" type="image/png" sizes="${size}x${size}" href="${g.eve.image.corp(g.config.get('corp.id'), size)}" />
  12. % endfor
  13. </head>
  14. <body>
  15. <%block name="header">
  16. <header>
  17. <div>
  18. <div class="left">
  19. <%block name="lefthead">
  20. <a href="/">
  21. <img id="corp-masthead" class="aligned" src="${g.eve.image.corp(g.config.get('corp.id'), 256)}"/>
  22. </a>
  23. <a href="/" class="aligned">${g.config.get("corp.name") | h}</a>
  24. </%block>
  25. </div><!--
  26. --><div class="right">
  27. <%block name="righthead"/>
  28. </div>
  29. </div>
  30. </header>
  31. </%block>
  32. <%block name="container">
  33. <div id="container">
  34. <div>
  35. <main>
  36. ${next.body()}
  37. </main>
  38. </div>
  39. </div>
  40. </%block>
  41. <%block name="footer">
  42. <footer>
  43. <div>
  44. Running <a href="https://github.com/earwig/calefaction">Calefaction</a> ${g.version}
  45. &bull;
  46. <a href="https://eveonline.com">EVE Online</a> and all related trademarks are property of <a href="https://ccpgames.com">CCP hf</a>.
  47. </div>
  48. </footer>
  49. </%block>
  50. </body>
  51. </html>