mestizo.monster/_includes/post.njk

17 lines
377 B
Text

---
layout: base.njk
---
<article>
<section></section>
<hgroup>
<h1>{{ title }}</h1>
<p>{{ description }}</p>
<ul>
<li>published: {{ date }}</li>
<li>reading time: about {{ content | readingTime }}</li>
<li>author: <a href="/about">daniel a. gallegos (taco)</a></li>
</ul>
</hgroup>
<section>{{ content | safe }}</section>
</article>