mylloon.fr/templates/blog/index.html

32 lines
717 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html class="index" lang="fr">
2023-04-24 17:22:12 +02:00
<head dir="ltr">
2023-04-24 18:01:38 +02:00
{{>blog/head.html}}
<link rel="stylesheet" href="/css/blog/index.css" />
2023-04-24 17:22:12 +02:00
</head>
<body class="index">
2023-04-19 20:27:40 +02:00
{{#data}}
2023-04-24 18:01:38 +02:00
2023-04-24 19:11:00 +02:00
<h1>Blog</h1>
2023-04-24 18:01:38 +02:00
{{#no_posts}}
<h2 class="subtitle">Aucun posts</h2>
{{/no_posts}} {{^no_posts}}
<div class="timeline">
<ul>
{{#posts}}
2023-04-25 03:16:47 +02:00
<li onclick="location.href='/blog/{{url}}';">
2023-04-25 03:29:55 +02:00
{{>blog/date.html}}
2023-04-24 18:01:38 +02:00
<div class="content">
2023-04-25 03:16:47 +02:00
<h2>{{title}}</h2>
2023-04-24 18:41:40 +02:00
{{#desc}}
<p>{{desc}}</p>
{{/desc}}
2023-04-24 18:01:38 +02:00
</div>
</li>
{{/posts}}
</ul>
2023-04-19 20:27:40 +02:00
</div>
2023-04-24 18:01:38 +02:00
{{/no_posts}} {{/data}} {{>footer.html}}
</body>
</html>