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.
 
 
 
 
 

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