wonderfulfrog.com/src/_layouts/post.html
2024-02-22 11:32:31 -08:00

19 lines
556 B
HTML

---
layout: base
---
<article class="[ flow ]">
<header class="[ flow ]" style="--flow-space: 1rem">
{% from "macros/date.njk" import format %}
{{ format(date) }}
<h1>{{ title }}</h1>
<ul class="[ categories ] [ cluster list-none p-0 ]">
{% for tag in tags | filter(["post"]) %}
<li class="[ flex gap-0.25 ]">
<a href="/tags/{{ tag | slugify }}">{{ tag }}</a>
</li>
{% endfor %}
</ul>
</header>
{{ content | safe }}
</article>