mylloon.fr/templates/blog/index.html

19 lines
420 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html class="index" lang="fr">
{{>head.html}}
<body class="index">
2023-04-19 20:27:40 +02:00
{{#data}}
<h1 id="title">Blog</h1>
<div id="content">
{{^posts}}
<h2 class="subtitle">Aucun posts</h2>
{{/posts}} {{#posts}}
<h2 class="subtitle">
<a target="_self" href="/blog/{{url}}">{{title}}</a>
</h2>
{{/posts}}
</div>
{{/data}} {{>footer.html}}
</body>
</html>