wonderfulfrog.com/src/_layouts/post.html
2024-02-05 13:14:21 -08:00

14 lines
399 B
HTML

---
layout: base
---
<article class="flow">
<header class="flow" style="--flow-space: 1rem">
<time class="date" datetime="{{ date }}">{{ date | formatDate("MMMM D, YYYY") }}</time>
<h1>{{ title }}</h1>
<ul class="categories">
{% for category in categories %}<li>{{ category }}</li>{% endfor %}
</ul>
</header>
{{ content | safe }}
</article>