Skip to content

Commit

Permalink
fix small count issue on home
Browse files Browse the repository at this point in the history
  • Loading branch information
Holger Hellinger committed Jan 19, 2024
1 parent d941ea0 commit 99d0ef9
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 99d0ef9

Please sign in to comment.