2018-05-28 12:33:21 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
|
|
|
<h1 style="text-align: center;">michael's blog</h1>
|
|
|
|
|
|
|
|
<table style="width: 100%;">
|
|
|
|
{% for post in site.posts %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<h3 style="margin-bottom: 0;">
|
2018-05-28 17:00:21 +00:00
|
|
|
<a href="{{ post.url }}" style="text-decoration: none;">{{ post.title }}</a>
|
2018-05-28 12:33:21 +00:00
|
|
|
</h3>
|
|
|
|
</td>
|
|
|
|
<td style="text-align: right;">
|
|
|
|
<small>
|
|
|
|
<strong>{{ post.date | date: "%B %e, %Y" }}</strong>
|
|
|
|
</small>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|