index.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="description" content="A layout example with a side menu that hides on mobile, just like the Pure website.">
  7. <title>Evil Corp | Home</title>
  8. <link rel="stylesheet" href="/static/pure.css">
  9. <link rel="stylesheet" href="/static/menu.css">
  10. </head>
  11. <body>
  12. <div id="layout">
  13. {% include 'nav.html' %}
  14. <div id="main">
  15. <div class="header">
  16. <h1>Welcome to Evil Corp</h1>
  17. <h2>We are a totally-legit, zero-bullshit company</h2>
  18. </div>
  19. <div class="content">
  20. <h2 class="content-subhead">What's this site for?</h2>
  21. <p>
  22. This is out completely secure company website. Valid credentials are required to access most resources, but you can still visit our <a href="/news">News</a> area freely.
  23. As in any other CMS, admins have superpowers: they can, for example, read super secret flags!
  24. </p>
  25. </div>
  26. </div>
  27. </div>
  28. <script src="/static/ui.js"></script>
  29. </body>
  30. </html>