2023-04-19 20:17:03 +02:00
|
|
|
<!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>
|
2023-04-19 20:17:03 +02:00
|
|
|
<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-26 17:42:17 +02:00
|
|
|
<nav><a id="rss" href="/blog/rss">RSS</a></nav>
|
|
|
|
<hr />
|
|
|
|
|
2023-04-24 18:01:38 +02:00
|
|
|
{{#no_posts}}
|
2023-08-14 18:19:45 +02:00
|
|
|
<h2 class="subtitle" style="text-align: center">Aucun posts</h2>
|
2023-04-24 18:01:38 +02:00
|
|
|
{{/no_posts}} {{^no_posts}}
|
|
|
|
<div class="timeline">
|
|
|
|
<ul>
|
|
|
|
{{#posts}}
|
2023-04-26 10:41:49 +02:00
|
|
|
<li onclick="location.href='/blog/p/{{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}}
|
2023-04-19 20:17:03 +02:00
|
|
|
</body>
|
|
|
|
</html>
|