diff --git a/config/filters/index.js b/config/filters/index.js index aaa52c1e..6f909971 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -225,6 +225,13 @@ export default { const dateB = DateTime.fromISO(b.dateAdded) return dateB - dateA }), + currentBookCount: (books) => { + const year = DateTime.now().year + return books.filter(book => { + if (book.status === 'finished' && book.dateAdded) return parseInt(book.dateAdded.split('-')[0]) === year + return '' + }).length + }, // tags filterTags: (tags) => { diff --git a/package.json b/package.json index b9713146..c769a3c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "13.6.4", + "version": "13.6.5", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/book-year.liquid b/src/_includes/book-year.liquid index 1c8c7d50..bfc7a240 100644 --- a/src/_includes/book-year.liquid +++ b/src/_includes/book-year.liquid @@ -5,6 +5,6 @@ layout: default
{% tablericon "arrow-left" "Go back" %} Go back
Books finished: {{ bookData.size }} +
I finished {{ bookData.size }} books in {{ year }}
Here's what I'm reading at the moment. You can also take a look at what I'm planning to read (eventually).
+I've finished {{ currentBookCount }} books this year.
2024 • 2023 • 2022 • 2021 • 2020