Display new blog posts at the top of the list

This commit is contained in:
Aria 2025-03-10 13:33:45 +11:00
parent 92992c6142
commit 895fba4138
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B

View file

@ -16,7 +16,7 @@ const description = "Aria's blog of assorted content";
<h1 class="text-2xl">All blog posts:</h1>
<ul>
{
allPosts.map((post: any) => (
allPosts.reverse().map((post: any) => (
<BlogEntry
url={`/posts/${post.id}/`}
title={post.data.title}