2023-04-19 20:17:03 +02:00
|
|
|
<!DOCTYPE html>
|
2023-10-15 20:58:20 +02:00
|
|
|
<html lang="fr">
|
2023-04-24 17:22:12 +02:00
|
|
|
<head dir="ltr">
|
2023-10-15 20:58:20 +02:00
|
|
|
{{>head.html}}
|
|
|
|
<link
|
|
|
|
rel="alternate"
|
|
|
|
type="application/rss+xml"
|
|
|
|
title="RSS"
|
|
|
|
href="/blog/rss"
|
|
|
|
/>
|
2023-04-24 18:01:38 +02:00
|
|
|
<link rel="stylesheet" href="/css/blog/index.css" />
|
2023-04-24 17:22:12 +02:00
|
|
|
</head>
|
2023-10-15 20:58:20 +02:00
|
|
|
<body>
|
|
|
|
<header>{{>navbar.html}}</header>
|
|
|
|
<main>
|
|
|
|
{{#data}}
|
2023-04-24 18:01:38 +02:00
|
|
|
|
2023-10-15 20:58:20 +02:00
|
|
|
<h1>Blog</h1>
|
2024-01-25 18:23:12 +01:00
|
|
|
{{#about}} {{&content}} {{/about}}
|
2023-10-15 20:58:20 +02:00
|
|
|
<a id="rss" href="/blog/rss">Lien vers le flux RSS</a>
|
2023-04-26 17:42:17 +02:00
|
|
|
|
2023-10-15 20:58:20 +02:00
|
|
|
{{#no_posts}}
|
|
|
|
<h2>Aucun posts</h2>
|
|
|
|
|
|
|
|
{{/no_posts}} {{^no_posts}}
|
2023-04-24 18:01:38 +02:00
|
|
|
<ul>
|
|
|
|
{{#posts}}
|
2023-10-16 11:39:43 +02:00
|
|
|
<li role="button" onclick="window.open('/blog/p/{{url}}', '_parent');">
|
2023-04-25 03:29:55 +02:00
|
|
|
{{>blog/date.html}}
|
2023-10-15 20:58:20 +02:00
|
|
|
<h2>{{title}}</h2>
|
|
|
|
{{#desc}}
|
|
|
|
<p>{{desc}}</p>
|
|
|
|
{{/desc}}
|
2023-04-24 18:01:38 +02:00
|
|
|
</li>
|
|
|
|
{{/posts}}
|
|
|
|
</ul>
|
2023-10-15 20:58:20 +02:00
|
|
|
{{/no_posts}} {{/data}}
|
|
|
|
</main>
|
2023-04-19 20:17:03 +02:00
|
|
|
</body>
|
|
|
|
</html>
|