Skip to content

Commit

Permalink
undo wrong sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
Holger Hellinger committed Jan 19, 2024
1 parent 8ea4d21 commit 3a6e9d8
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").slice(0, 3);
const latest = i => i.getFilteredByGlob("./src/content/posts/*.md").reverse().slice(0, 3);
const feed = i => i.getFilteredByGlob("./src/content/posts/*.md").reverse();

module.exports = {
Expand Down

0 comments on commit 3a6e9d8

Please sign in to comment.