blog/_layouts/post.html
Michael Zhang c383893e77
footer
2018-05-28 12:13:18 -05:00

23 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="/">&laquo; 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>