blog/index.html

11 lines
251 B
HTML

---
layout: default
---
{% for post in site.posts %}
<article class="feed-item">
<small class="date">{{ post.date | date: "%Y-%m-%d" }}</small>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</article>
{% endfor %}