hypnagaga_old/config/collections/index.js
2022-10-30 13:32:44 +01:00

9 lines
221 B
JavaScript

/** Returns all blog posts as a collection. */
const getAllPosts = collection => {
const projects = collection.getFilteredByGlob('./src/posts/*.md');
return projects.reverse();
};
module.exports = {
getAllPosts
};