feat: add config for entire collection
This commit is contained in:
parent
c7679dad26
commit
5f6740c573
2 changed files with 11 additions and 1 deletions
|
@ -42,8 +42,16 @@ const getPostsByCategory = (collection) => {
|
|||
return postsByCategory;
|
||||
};
|
||||
|
||||
const getAllCatalogue = (collection) => {
|
||||
const items = collection.getFilteredByGlob(
|
||||
path.join(dir.input, "content/catalogue/**/*.md"),
|
||||
);
|
||||
return items.reverse();
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
getAllPosts,
|
||||
getAllCatalogue,
|
||||
getAllPostCategories,
|
||||
getAllPosts,
|
||||
getPostsByCategory,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue