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.
 
 
 
 
 

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