diff --git a/eleventy.config.js b/eleventy.config.js index ef714b8..4824391 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -44,6 +44,12 @@ export default function (eleventyConfig) { eleventyConfig.addCollection("gamesByTag", (collection) => collectionByTag(collection, "game"), ); + eleventyConfig.addCollection("showsByTag", (collection) => + collectionByTag(collection, "tv"), + ); + eleventyConfig.addCollection("moviesByTag", (collection) => + collectionByTag(collection, "movie"), + ); // --------------------- Custom Filters ----------------------- eleventyConfig.addFilter("allTagCounts", allTagCounts); diff --git a/src/pages/books/index.html b/src/pages/books/index.html index 17ed024..daf37ec 100644 --- a/src/pages/books/index.html +++ b/src/pages/books/index.html @@ -16,7 +16,7 @@ permalink: "books/index.html"