mylloon.fr/templates/blog/index.html

21 lines
436 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html class="index" lang="fr">
2023-04-24 17:22:12 +02:00
<head dir="ltr">
{{>head.html}}
</head>
<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">
2023-04-20 11:11:54 +02:00
<a href="/blog/{{url}}">{{title}}</a>
2023-04-19 20:27:40 +02:00
</h2>
{{/posts}}
</div>
{{/data}} {{>footer.html}}
</body>
</html>