---
layout: layouts/base.njk
eleventyNavigation:
key: Now
order: 4
numberOfLatestPostsToShow: 4
---
{% set postsCount = collections.now | length %}
{% set latestPostsCount = postsCount | min(numberOfLatestPostsToShow) %}
{% set postslist = collections.now | head(-1 * numberOfLatestPostsToShow) %}
{% set postslistCounter = postsCount %}
{% set morePosts = postsCount - numberOfLatestPostsToShow %}
Now: What’s Been Going on Lately?
{% set now = collections.now | last %}
{{ now.data.title }}
{{ now.content | safe }}
{{ post.url }}
{% endif %}
{{ post.data.synopsis | truncate(150) | safe }}
{% else %}{{ post.content | truncate(150) | safe }}{% endif %}See {{ morePosts }} more post{% if morePosts != 1 %}s{% endif %}
. {% endif %}