42 lines
1000 B
HTML
42 lines
1000 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="A layout example with a side menu that hides on mobile, just like the Pure website.">
|
|
<title>Evil Corp | News</title>
|
|
|
|
<link rel="stylesheet" href="/static/pure.css">
|
|
<link rel="stylesheet" href="/static/menu.css">
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="layout">
|
|
|
|
{% include 'nav.html' %}
|
|
|
|
<div id="main">
|
|
<div class="header">
|
|
<h1>Evil Corp News</h1>
|
|
<h2>Here we will keep you updated on how we improve the world!</h2>
|
|
</div>
|
|
|
|
{% for post in news %}
|
|
<div class="content">
|
|
<h2 class="content-subhead">{{ post[1] }}</h2>
|
|
{{ post[2]|safe }}
|
|
<img class="pure-img-responsive" src="/images/{{ post[3] }}">
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script src="/static/ui.js"></script>
|
|
|
|
</body>
|
|
</html>
|