blog/index.html
2018-05-28 12:00:21 -05:00

22 lines
578 B
HTML

---
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;">
<a href="{{ post.url }}" style="text-decoration: none;">{{ post.title }}</a>
</h3>
</td>
<td style="text-align: right;">
<small>
<strong>{{ post.date | date: "%B %e, %Y" }}</strong>
</small>
</td>
</tr>
{% endfor %}
</table>