website/index.html
2016-03-13 22:34:30 -07:00

15 lines
277 B
HTML

---
layout: default
---
<div class="blog">
<ul>
{% for post in site.posts %}
<li>
<span class="date">{{ post.date | date: '%b %d %Y' }}</span> | <a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>