hypnagaga_old/config/collections/index.js
2022-10-10 14:41:35 +02:00

9 lines
227 B
JavaScript

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