20 lines
579 B
Plaintext
20 lines
579 B
Plaintext
---
|
||
layout: layouts/base.njk
|
||
title: "Nathan Upchurch | Once Burned: Incense I've burning in the past."
|
||
structuredData: none
|
||
---
|
||
{% set burning = collections.nowBurning | last %}
|
||
|
||
<h1>Previous “Now Burning” Entries:</h1>
|
||
{% set postsCount = collections.nowBurning | removeMostRecent | length %}
|
||
{% if postsCount > 0 %}
|
||
{% set postslist = collections.nowBurning | removeMostRecent %}
|
||
{% set showPostListHeader = false %}
|
||
{% include "incenseList.njk" %}
|
||
{% else %}
|
||
<p>Nothing’s here yet!</p>
|
||
{% endif %}
|
||
<a href="/now-burning/">
|
||
<button type="button">Latest »</button>
|
||
</a>
|