www-lordnet-sh/blog/index.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

18 lines
417 B
Text

---
permalink: false
---
## $ ls -lt blog/
{% if collections.posts.length %}
<ul class="post-list">
{% for post in collections.posts %}
<li>
<a href="{{ post.url }}">{{ post.data.title }}</a>
<span class="post-date">{{ post.date | readableDate }}</span>
</li>
{% endfor %}
</ul>
{% else %}
<p style="color:var(--p-dim)">No posts yet. Run: <code>touch blog/posts/first-post.md</code></p>
{% endif %}