styling tweaks, date formatting, blog tweaks

This commit is contained in:
Rik Berkelder 2025-01-29 01:42:26 +01:00
parent 4260eb4134
commit 93858a4dd4
6 changed files with 37 additions and 9 deletions

View file

@ -4,6 +4,8 @@ permalink: "/blog/"
---
<h1>Blog</h1>
{% for post in collections.blogpost %}
<a href="{{ post.data.permalink | safe }}">{{post.data.title}}</a>
{% for post in collections.blogpost | reverse %}
<div>
{{post.data.date | dateLocale}} - <a href="{{ post.data.permalink | safe }}">{{post.data.title}}</a>
</div>
{% endfor %}