diff --git a/content/now.njk b/content/now.njk
index 8b577e3..232b6bf 100644
--- a/content/now.njk
+++ b/content/now.njk
@@ -3,13 +3,7 @@ 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 %}
@@ -18,35 +12,11 @@ numberOfLatestPostsToShow: 4
{{ 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 %}
. +{% set postslist = collections.now | removeMostRecent %} +{% set showPostListHeader = false %} +{% include "postslist.njk" %} {% endif %} -