mylloon.fr/templates/blog/post.html

17 lines
346 B
HTML
Raw Normal View History

2023-04-19 18:55:03 +02:00
<!DOCTYPE html>
<html class="index" lang="fr">
{{>blog/head.html}}
<body class="index">
{{#data}}
<header></header>
<main>
{{^post}}
<p>This post doesn't exist... sorry</p>
{{/post}} {{#post}}
<article>{{&content}}</article>
{{/post}}
</main>
{{/data}}{{>blog/footer.html}}
</body>
</html>