20 lines
474 B
HTML
20 lines
474 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;">
|
||
|
<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>
|
||
|
</body>
|
||
|
|
||
|
</html>
|