lewisdale.dev/config/collections/posts.js
Lewis Dale 99370f516a
All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 3m19s
Update theme, unlist the All Things Must End post
2025-03-31 16:49:41 +01:00

8 lines
384 B
JavaScript

export default function (eleventyConfig) {
eleventyConfig.addCollection('posts',collectionApi =>
collectionApi.getFilteredByTag("posts")
.filter(p => process.env.DEBUG || !p.data.tags.includes("draft"))
.filter(p => process.env.DEBUG || p.date < new Date())
.filter(p => process.env.DEBUG || !p.data.tags.includes("unlisted"))
);
}