22 lines
659 B
Plaintext
22 lines
659 B
Plaintext
---
|
|
layout: layouts/base.njk
|
|
title: Nathan Upchurch | Now
|
|
structuredData: none
|
|
---
|
|
<article class="post">
|
|
<h1>Now: Life updates.</h1>
|
|
{% set now = collections.now | last %}
|
|
<h2>{{ now.data.title }}</h2>
|
|
{{ now.content | safe }}
|
|
</article>
|
|
<p class="metadata">Updated on the {{ now.date | niceDate }} by {{ metadata.author.name }} | <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 %}
|
|
|