Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
polent committed Jan 25, 2024
2 parents 83ebac9 + 704db87 commit 0fb7bff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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(1, 4);
const latest = i => i.getFilteredByGlob("./src/content/posts/*.md").reverse().slice(1, 7);
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
3 changes: 2 additions & 1 deletion src/_styles/layout/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@
margin-block-start: var(--space-l);
padding: var(--space-l);
border-radius: var(--border-radius-small);
background-color: var(--color-surface-secondary);
border: 1px solid var(--color-border-default);
background-color: var(--color-surface-default);
}

0 comments on commit 0fb7bff

Please sign in to comment.