lottepupspace/blog/_layouts/postlist.html
2025-07-28 14:39:05 +01:00

15 lines
No EOL
204 B
HTML

---
layout: default
---
{{ content }}
<h2>posts:</h2>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">[ {{ post.date }} ] {{ post.title }}</a>
</li>
{% endfor %}
</ul>