---js const eleventyNavigation = { key: "Home", order: 1 }; const numberOfLatestPostsToShow = 3; --- {% set postsCount = collections.posts | length %} {% set latestPostsCount = postsCount | min(numberOfLatestPostsToShow) %}
{{ morePosts }} more post{% if morePosts != 1 %}s{% endif %} can be found in the archive.
{% endif %} {# List every content page in the project #} {#{{ entry.url }}