The rest of the owl

This commit is contained in:
2026-02-28 12:13:24 -06:00
parent 54222db887
commit fdba0fdf8c
60 changed files with 1524 additions and 377 deletions

10
scripts/eleventy/feed.js Normal file
View File

@@ -0,0 +1,10 @@
export const setupFeedCollections = eleventyConfig => {
eleventyConfig.addCollection("feedDesc", api => {
const posts = api.getFilteredByTag('feed')
return posts
.sort((a, b) => {
return b.date < a.date ? -1 : 1
})
})
}