chore: programmatically generate book year links on index
This commit is contained in:
parent
98df43710d
commit
2420479402
4 changed files with 8 additions and 4 deletions
|
@ -205,6 +205,10 @@ export default {
|
||||||
},
|
},
|
||||||
bookStatus: (books, status) => books.filter(book => book.status === status),
|
bookStatus: (books, status) => books.filter(book => book.status === status),
|
||||||
bookFavorites: (books) => books.filter(book => book.favorite === true),
|
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 `<a href="/books/years/${year.value}">${year.value}</a>${separator}`;
|
||||||
|
}).join(''),
|
||||||
bookSortDescending: (books) => books.filter(book => !isNaN(DateTime.fromISO(book.date).toMillis())).sort((a, b) => {
|
bookSortDescending: (books) => books.filter(book => !isNaN(DateTime.fromISO(book.date).toMillis())).sort((a, b) => {
|
||||||
const dateA = DateTime.fromISO(a.date)
|
const dateA = DateTime.fromISO(a.date)
|
||||||
const dateB = DateTime.fromISO(b.date)
|
const dateB = DateTime.fromISO(b.date)
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "20.8.3",
|
"version": "20.8.4",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "20.8.3",
|
"version": "20.8.4",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "20.8.3",
|
"version": "20.8.4",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -10,7 +10,7 @@ schema: books
|
||||||
{%- assign currentBookCount = books.all | currentBookCount -%}
|
{%- assign currentBookCount = books.all | currentBookCount -%}
|
||||||
<h2 class="page-header">Currently reading</h2>
|
<h2 class="page-header">Currently reading</h2>
|
||||||
<p>Here's what I'm reading at the moment. I've finished <strong class="highlight-text">{{ currentBookCount }} books</strong> this year.</p>
|
<p>Here's what I'm reading at the moment. I've finished <strong class="highlight-text">{{ currentBookCount }} books</strong> this year.</p>
|
||||||
<p><a href="/books/years/2024">2024</a> / <a href="/books/years/2023">2023</a> / <a href="/books/years/2022">2022</a> / <a href="/books/years/2021">2021</a> / <a href="/books/years/2020">2020</a></p>
|
<p>{{ books.years | bookYearLinks }}</p>
|
||||||
{% render "partials/blocks/banners/rss.liquid", url: "https://feedpress.me/coryd-books", text: "Subscribe to my books feed or follow along on this page" %}
|
{% render "partials/blocks/banners/rss.liquid", url: "https://feedpress.me/coryd-books", text: "Subscribe to my books feed or follow along on this page" %}
|
||||||
<hr />
|
<hr />
|
||||||
{% for book in bookData %}
|
{% for book in bookData %}
|
||||||
|
|
Reference in a new issue