Files
nathanupchurch.com/content/status/index.njk
2026-06-28 20:18:03 -05:00

41 lines
1017 B
Plaintext

---
eleventyExcludeFromCollections: true
layout: layouts/base.njk
title: "Nathan Upchurch | Status: What I'm thinking at the moment."
structuredData: none
permalink: "/status/index.html"
---
{% set status = collections.status | last %}
<h1>Current status:</h1>
<article class="post microblog-post" data-pagefind-body>
<div class="microblog-status card">
<span class="microblog-emoji">{{ status.data.emoji }}</span>
<div class="microblog-status-copy">
<p>
<span class="status-metadata">
{% if metadata.author.url %}
<a href="{{ metadata.author.url }}">
{% endif %}
{% if metadata.author.name %}
{{ metadata.author.name }}
{% endif %}
{% if metadata.author.url %}
</a>
{% endif %}
• {{ status.date | niceDate }}<br />
</span>
{% if status.data.comment %}
{{ status.data.comment | markdownify | safe }}<br />
{% endif %}
</p>
</div>
</div>
</article>
<a href="/prior-thoughts/">
<button type="button">Previous Entries</button>
</a>