mirror of
https://git.tacowolf.net/TacoWolf/mestizo.monster.git
synced 2026-06-12 17:00:04 -04:00
29 lines
655 B
Text
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>
|