nani.wtf/src/templates/post.html

17 lines
302 B
HTML
Raw Normal View History

2020-09-22 04:03:52 +02:00
<main>
<article>
2022-03-19 00:59:36 +01:00
<header class="header">
<h1>$title$</h1>
2020-09-22 04:03:52 +02:00
<div>
<small>$date$</small>
$if(updated)$
2022-03-19 00:59:36 +01:00
<small>(updated: $updated$)</small>
2020-09-22 04:03:52 +02:00
$endif$
</div>
</header>
2022-03-19 00:59:36 +01:00
<section class="content">
2020-09-22 04:03:52 +02:00
$body$
</section>
</article>
</main>