From e8f1dc6be84161d7dc7edad4fae01ccdb268e339 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 23 Apr 2024 21:13:32 -0700 Subject: [PATCH] chore: sort order --- package.json | 2 +- src/_includes/partials/now/topper.liquid | 2 +- src/pages/about.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 323d57a7..b0d9a6a2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "12.9.7", + "version": "12.9.8", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/partials/now/topper.liquid b/src/_includes/partials/now/topper.liquid index efb931bc..1b50fcaf 100644 --- a/src/_includes/partials/now/topper.liquid +++ b/src/_includes/partials/now/topper.liquid @@ -1,5 +1,5 @@ {%- assign artist = artists | first -%} -{%- assign book = books | bookStatus: 'started' | first -%} +{%- assign book = books | bookStatus: 'started' | reverse | first -%} {%- assign show = tv | first -%}

I'm a software developer based in Camarillo, California. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, music, writing, reading, tv and movies. Lately I've been listening to a lot of {{ artist.title }}, reading {{ book.title }} and watching {{ show.name }}.

diff --git a/src/pages/about.md b/src/pages/about.md index e3c29d6a..091cfe23 100644 --- a/src/pages/about.md +++ b/src/pages/about.md @@ -4,7 +4,7 @@ layout: default permalink: /about.html --- {%- assign artist = music.artists | first -%} -{%- assign book = books | bookStatus: 'started' | first -%} +{%- assign book = books | bookStatus: 'started' | reverse | first -%} {%- assign show = tv | first -%}