This commit is contained in:
Michael Zhang 2018-05-28 14:19:45 -05:00
parent 86525a855b
commit 9d418fd132
No known key found for this signature in database
GPG key ID: A1B65B603268116B

View file

@ -1,23 +1,25 @@
<html> <html>
<head> <head>
<title>{{ page.title }} - michael's blog</title> <title>{{ page.title }} - michael's blog</title>
<link rel="stylesheet" href="/css/index.css" /> <link rel="stylesheet" href="/css/index.css" />
</head> </head>
<body> <body>
{% include navbar.html %} <header>{% include navbar.html %}</header>
<div class="container" style="padding: 30px;"> <div class="container" style="padding: 30px;">
<div style="text-align: center;"> <div style="text-align: center;">
<h1 style="display: inline-block; margin: 0;">{{ page.title }}</h1> <h1 style="display: inline-block; margin: 0;">{{ page.title }}</h1>
<p style="font-size: 0.9em;">published: <b>{{ page.date | date_to_long_string }}</b></p> <p style="font-size: 0.9em;">published:
<b>{{ page.date | date_to_long_string }}</b>
</p>
</div> </div>
{{ content }} {{ content }}
</div> </div>
{% include footer.html %} {% include footer.html %}
</body> </body>
</html> </html>