website/index.html

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>