Files
neocities/blog.html
bvanroll 61494fc1ec
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 54s
new test
2025-08-24 11:35:53 +02:00

14 lines
200 B
HTML

---
layout: default
title: blog
---
<ul class="blogul">
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url }}">{{post.title}}</a></h2>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>