blog/index.html
2021-02-11 19:12:20 +01:00

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>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
{{ post.excerpt }}
</article>
{% endfor %}