Skip to content

Instantly share code, notes, and snippets.

@SaraSoueidan
Created August 25, 2021 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SaraSoueidan/f292394756c72a7a57d64492662eeee8 to your computer and use it in GitHub Desktop.
Save SaraSoueidan/f292394756c72a7a57d64492662eeee8 to your computer and use it in GitHub Desktop.
eleventyConfig.addCollection("articles", function(collection) {
return collection.getFilteredByGlob("./src/content/articles/**/*.md").filter((item) => {
return !item.data.draft && item.date <= now;
}).reverse();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment