This commit is contained in:
2025-03-21 17:26:24 +01:00
parent a743047082
commit 698dec7a7a
3 changed files with 26 additions and 7 deletions

19
blog.html Normal file
View File

@ -0,0 +1,19 @@
---
layout: default
title: Blog
---
<h1>Latest Posts</h1>
<ul>
{% for post in site.posts %}
<li>
<h2>
<a href="{{ post.url }}">{{ post.title }}</a>
<span style="font-size: 0.6em; font-style: italic; margin-left: 0.5rem;">
{{ post.date | date: "%B %d, %Y" }}
</span>
</h2>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>