Created
August 25, 2021 17:15
-
-
Save SaraSoueidan/f292394756c72a7a57d64492662eeee8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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