We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to add a filter to limit collection
eleventyConfig.addFilter("head", (array, n) => { // Get the first `n` elements of a collection. return array.slice(0, n); });
Then use the filter in the template
{% set postslist = collections.posts | head(10) %}
Add a section title "Recent Posts"
Add a link to all posts at the bottom
The text was updated successfully, but these errors were encountered:
#28 add archive with all posts and limit homepage post count
6efdd8d
No branches or pull requests
Need to add a filter to limit collection
Then use the filter in the template
Add a section title "Recent Posts"
Add a link to all posts at the bottom
The text was updated successfully, but these errors were encountered: