32 lines
706 B
HTML
32 lines
706 B
HTML
|
<html lang="en">
|
||
|
<head>
|
||
|
<link rel="stylesheet" type="text/css" href="/css/blog.css">
|
||
|
<link rel="stylesheet" type="text/css" href="/css/code.css">
|
||
|
<title>{{ title }}</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<header>
|
||
|
<a href="/">
|
||
|
<div class="icon"></div>
|
||
|
<div class="title">Platypush Blog</div>
|
||
|
</a>
|
||
|
</header>
|
||
|
|
||
|
<main>
|
||
|
<div class="title">
|
||
|
<h1>{{ title }}</h1>
|
||
|
{% if published %}
|
||
|
<div class="published-date">
|
||
|
Published on {{ published }}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
|
||
|
<div class="content">
|
||
|
{{ content | safe }}
|
||
|
</div>
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|