From b633ae5bb17c9a72815f4b7ed30c68b7aefdc73e Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 2 May 2024 20:45:31 -0700 Subject: [PATCH] fix: widget order --- package.json | 2 +- src/index.html | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a4877543..0e71b57d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "13.6.2", + "version": "13.6.3", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/index.html b/src/index.html index b0332c47..2d9484ef 100644 --- a/src/index.html +++ b/src/index.html @@ -3,4 +3,5 @@ layout: default --- {% render "partials/home/now.liquid" status:status, artists:music.artists, books:books, tv:tv %} {% render "partials/home/posts.liquid" icon: "star", title: "Featured", postData:collections.posts, postType: "featured" %} -{% render "partials/home/posts.liquid" icon: "clock-2", title: "Recent posts", postData:collections.posts %} \ No newline at end of file +{% assign posts = collections.posts | reverse %} +{% render "partials/home/posts.liquid" icon: "clock-2", title: "Recent posts", postData:posts %} \ No newline at end of file