diff --git a/.eleventy.js b/.eleventy.js index 332c41c2..097e9204 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -12,7 +12,7 @@ import filters from './config/filters/index.js' import { slugifyString } from './config/utils/index.js' import { svgToJpeg } from './config/events/index.js' import { minifyJsComponents } from './config/events/index.js' -import { searchIndex, tagList, postStats, tagsSortedByCount, links, tagMap } from './config/collections/index.js' +import { searchIndex, tagList, postStats, tagsSortedByCount, links, tagMap, booksToRead } from './config/collections/index.js' import { img } from './config/shortcodes/index.js' // load .env @@ -94,6 +94,7 @@ export default async function (eleventyConfig) { eleventyConfig.addCollection('tagsSortedByCount', tagsSortedByCount) eleventyConfig.addCollection('links', links) eleventyConfig.addCollection('tagMap', tagMap) + eleventyConfig.addCollection('booksToRead', booksToRead) const md = markdownIt({ html: true, linkify: true }) md.use(markdownItAnchor, { diff --git a/_redirects b/_redirects index 0073ae66..a35b74b2 100644 --- a/_redirects +++ b/_redirects @@ -82,6 +82,7 @@ /mastodon https://social.lol/@cory 301! /coffee https://www.buymeacoffee.com/cory 301! /speedlify https://speedlify.coryd.dev 301! +/books/want-to-read/ /books/want-to-read/0/ 200 # netlify app domain https://cdme.netlify.app https://coryd.dev 301! diff --git a/config/collections/index.js b/config/collections/index.js index 63ecc56a..c91d87db 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -110,6 +110,8 @@ export const tagsSortedByCount = (collection) => { export const links = (collection) => collection.getFilteredByGlob('src/links/**/*.*').reverse() +export const booksToRead = (collection) => collection.getAll()[0].data.books.filter(book => book.status === 'want to read').sort((a, b) => a['title'].toLowerCase().localeCompare(b['title'].toLowerCase())) + export const postStats = (collection) => { const oneDayMilliseconds = 1000 * 60 * 60 * 24 const statsObject = { diff --git a/package.json b/package.json index 11d48e55..4d36e248 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "12.5.0", + "version": "12.6.0", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_data/books.js b/src/_data/books.js index 013acb64..d69bf86a 100644 --- a/src/_data/books.js +++ b/src/_data/books.js @@ -17,6 +17,7 @@ export default async function () { dateAdded: book?.['dateStarted'] || book?.['dateFinished'], status: book['status'], tags: book['tags'], + categories: book['categories']?.length > 1 ? book['categories'].join(', ') : book['categories']?.[0], type: 'book', } }) diff --git a/src/assets/styles/base/index.css b/src/assets/styles/base/index.css index 1716ece3..60da6264 100644 --- a/src/assets/styles/base/index.css +++ b/src/assets/styles/base/index.css @@ -143,10 +143,10 @@ hr { height: 1px; background-color: var(--gray-light); border: 0; -} -hr.large-spacing { - margin: var(--sizing-base) 0; + &.large-spacing { + margin: var(--sizing-base) 0; + } } /* tables */ diff --git a/src/pages/404.html b/src/pages/404.html index c7b9ddd9..f3f26525 100644 --- a/src/pages/404.html +++ b/src/pages/404.html @@ -12,5 +12,5 @@ image: /assets/img/404.jpg
These are books I want to read, sorted in alphabetical order. As one would expect, it will change as I navigate through and add to it.
+