blog/index.html

21 lines
518 B
HTML
Raw Normal View History

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:07:44 +00:00
<a href="{{ post.url }}" style="font-weight: 300;">{{ post.title }}</a>
2018-05-28 12:33:21 +00:00
</h3>
</td>
<td style="text-align: right;">
2018-05-28 17:07:44 +00:00
<small>{{ post.date | date: "%B %e, %Y" }}</small>
2018-05-28 12:33:21 +00:00
</td>
</tr>
{% endfor %}
</table>