22 lines
549 B
HTML
22 lines
549 B
HTML
<html>
|
|
|
|
<head>
|
|
<title>{{ page.title }} - michael's blog</title>
|
|
<link rel="stylesheet" href="/css/index.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container" style="padding: 30px;">
|
|
<a href="/">« back</a>
|
|
<div style="text-align: center;">
|
|
<h2 style="display: inline-block; margin-bottom: 0;">{{ page.title }}</h2>
|
|
<p style="font-size: 0.9em;">published: <b>{{ page.date | date_to_long_string }}</b></p>
|
|
</div>
|
|
|
|
{{ content }}
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
|
|
</html>
|