bob/lib/template/post.html
simonpetit 781a86b8d5
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/tag Build is failing
fixing issues to parse code blocks in markdown + supporting created_at and updated_at based on git dates
2025-12-10 17:21:03 +00:00

26 lines
786 B
HTML

<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="utf-8">
<title>simpet</title>
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<link href="https://fonts.googleapis.com/css?family=Cutive+Mono|IBM+Plex+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="../css/poststyle.css">
</head>
<body>
<h1 class='title'><a href="../index.html">simpet</a></h1>
<article>
<div class='dates'>
<p>Created at: <time datetime="{{created}}">{{created}}</time></p>
<p>Updated at: <time datetime="{{updated}}">{{updated}}</time></p>
</div>
{{article}}
<footer>
<div></div>
</footer>
</article>
</body>
</html>