22 lines
644 B
Plaintext
22 lines
644 B
Plaintext
---
|
||
layout: layouts/base.njk
|
||
title: Nathan Upchurch | Now
|
||
structuredData: none
|
||
---
|
||
<article class="post">
|
||
<h1>Now: What’s Been Going on Lately?</h1>
|
||
{% set now = collections.now | last %}
|
||
<h2>{{ now.data.title }}</h2>
|
||
{{ now.content | safe }}
|
||
</article>
|
||
<p class="metadata">Updated: {{ now.date | readableDate }} | <a href="https://nownownow.com/about">What is a now page?</a></p>
|
||
|
||
{% set postsCount = collections.now | removeMostRecent | length %}
|
||
{% if postsCount > 1 %}
|
||
<h2>Previous Entries:</h2>
|
||
{% set postslist = collections.now | removeMostRecent %}
|
||
{% set showPostListHeader = false %}
|
||
{% include "postslist.njk" %}
|
||
{% endif %}
|
||
|