feat: reorganize watching section

This commit is contained in:
Devin Haska 2025-01-24 13:56:57 -08:00
parent 8e41cb5af7
commit 8785c3d23b
16 changed files with 134 additions and 34 deletions

View file

@ -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);