--- layout: layouts/home.njk eleventyNavigation: key: Home order: 1 --- {% set postsCount = collections.posts | length %} {% set latestPostsCount = postsCount | min(3) %}

Latest {{ latestPostsCount }} Post{% if latestPostsCount != 1 %}s{% endif %}

{% set postslist = collections.posts | head(-3) %} {% set postslistCounter = postsCount %} {% include "postslist.njk" %} {% if postsCount > 3 %}

More posts can be found in the archive.

{% endif %} {# List every content page in the project #} {# #}