New year updates

This commit is contained in:
2026-01-01 18:54:20 -06:00
parent 015f52a705
commit 4d279bb7f1
29 changed files with 211 additions and 133 deletions

View File

@@ -0,0 +1,7 @@
---
title: Autumn Leaves
manufacturer: The Mothers Fragrances
date: 2025-12-23 18:47:00
time: 6:47 PM
---

View File

@@ -0,0 +1,7 @@
---
title: Koin
manufacturer: Gyokushodo
date: 2026-01-01 00:37:00
time: 12:37 AM
---
Happy New Year!

View File

@@ -0,0 +1,7 @@
---
title: Kumoi
manufacturer: Yamadamatsu
date: 2025-12-24 13:15:00
time: 1:15 PM
---
The unlit stick smells like chocolate.

View File

@@ -0,0 +1,7 @@
---
title: Tosui
manufacturer: Hikali Koh
date: 2025-12-30 15:12:00
time: 3:12 PM
---

View File

@@ -0,0 +1,25 @@
---
eleventyExcludeFromCollections: true
layout: layouts/base.njk
title: "Nathan Upchurch | Now Burning: What incense I'm burning at the moment."
structuredData: none
permalink: "/now-burning/index.html"
postlistHeaderText: "What I've been burning:"
---
{% set burning = collections.nowBurning | last %}
<h1>Now Burning:</h1>
<article class="post microblog-post">
<img class="microblog-icon" src="/img/censer.svg">
<div class="microblog-status">
<h2 class="">{{ burning.data.title }}{% if burning.data.manufacturer %}, {{ burning.data.manufacturer }}{% endif %}, {{ burning.date | niceDate }}, {{ burning.data.time }}</h2>
{% if burning.content %}
<div class="microblog-comment">
{{ burning.content | safe }}
</div>
{% endif %}
</div>
</article>
<a href="/once-burned/">
<button type="button">Previous Entries »</button>
</a>