mestizo.monster/_includes/post.njk
2026-04-08 21:14:38 -04:00

29 lines
655 B
Text

---
published: Last Modified
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
</head>
<body>
<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 (taco)</a></li>
</ul>
</hgroup>
<section>
{{ content | safe }}
</section>
</article>
</body>
</html>