Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
153307 committed Jan 19, 2024
2 parents 175d781 + 99d0ef9 commit d65fcde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_11ty/collections.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Collection for posts
const posts = i => i.getFilteredByGlob("./src/content/posts/*.md").reverse();
const latest = i => i.getFilteredByGlob("./src/content/posts/*.md").reverse().slice(0, 3);
const latest = i => i.getFilteredByGlob("./src/content/posts/*.md").reverse().slice(1, 4);
const featured = i => i.getFilteredByGlob("./src/content/posts/*.md").reverse().slice(0, 1);
const feed = i => i.getFilteredByGlob("./src/content/posts/*.md").reverse();

Expand Down

0 comments on commit d65fcde

Please sign in to comment.