www-lordnet-sh/_includes/post.njk
lordtet 955a330ad9 i seriously vibe coded the hell out of this LOL. I'm not a web guy. I'll
look this over to make sure its not TOO slop-heavy later on.
2026-03-23 22:49:10 -04:00

22 lines
561 B
Text

---
layout: base.njk
---
<div class="window page-window focused"
data-wid="page-window"
data-title="{{ title }}"
data-close="back">
<div class="window-content">
{% if date %}
<p style="color:var(--p-dim); font-size:13px; margin-bottom:16px;">
{{ date | readableDate }}
{% if tags %} · {{ tags | join(', ') }}{% endif %}
</p>
{% endif %}
{{ content | safe }}
<hr style="border:none; border-top:1px solid var(--p-dim); margin:24px 0 16px">
<p><a href="/blog/">← back to posts</a></p>
</div>
</div>