new test
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 54s

This commit is contained in:
2025-08-24 11:35:53 +02:00
parent 03d2edfb50
commit 61494fc1ec
26 changed files with 52 additions and 23 deletions

13
blog.html Normal file
View File

@@ -0,0 +1,13 @@
---
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>