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