diff --git a/config/filters/index.js b/config/filters/index.js index 729a0f6b..82782df6 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -205,6 +205,10 @@ export default { }, bookStatus: (books, status) => books.filter(book => book.status === status), bookFavorites: (books) => books.filter(book => book.favorite === true), + bookYearLinks: (years) => years.sort((a, b) => b.value - a.value).map((year, index) => { + const separator = index < years.length - 1 ? ' / ' : ''; + return `${year.value}${separator}`; + }).join(''), bookSortDescending: (books) => books.filter(book => !isNaN(DateTime.fromISO(book.date).toMillis())).sort((a, b) => { const dateA = DateTime.fromISO(a.date) const dateB = DateTime.fromISO(b.date) diff --git a/package-lock.json b/package-lock.json index 4c6e2dc9..95f407df 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "20.8.3", + "version": "20.8.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "20.8.3", + "version": "20.8.4", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index edb36b51..21ba8be6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "20.8.3", + "version": "20.8.4", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/pages/main/books/index.html b/src/pages/main/books/index.html index f1273f60..27a46ad9 100644 --- a/src/pages/main/books/index.html +++ b/src/pages/main/books/index.html @@ -10,7 +10,7 @@ schema: books {%- assign currentBookCount = books.all | currentBookCount -%}

Here's what I'm reading at the moment. I've finished {{ currentBookCount }} books this year.

-

2024 / 2023 / 2022 / 2021 / 2020

+

{{ books.years | bookYearLinks }}

{% render "partials/blocks/banners/rss.liquid", url: "https://feedpress.me/coryd-books", text: "Subscribe to my books feed or follow along on this page" %}
{% for book in bookData %}