blog/index.html
Michael Zhang da9d40855c
colorlink
2018-05-28 15:23:18 -05:00

18 lines
483 B
HTML

---
layout: default
---
<table style="width: 100%;">
{% for post in site.posts %}
<tr>
<td>
<h3 style="margin-bottom: 0;">
<a class="colorlink" href="{{ post.url }}" style="font-weight: 300;">{{ post.title }}</a>
</h3>
</td>
<td style="text-align: right;">
<small>{{ post.date | date: "%B %e, %Y" }}</small>
</td>
</tr>
{% endfor %}
</table>