news.html 1000 B

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 | News</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>Evil Corp News</h1>
  17. <h2>Here we will keep you updated on how we improve the world!</h2>
  18. </div>
  19. {% for post in news %}
  20. <div class="content">
  21. <h2 class="content-subhead">{{ post[1] }}</h2>
  22. {{ post[2]|safe }}
  23. <img class="pure-img-responsive" src="/images/{{ post[3] }}">
  24. </div>
  25. {% endfor %}
  26. </div>
  27. </div>
  28. <script src="/static/ui.js"></script>
  29. </body>
  30. </html>