mylloon.fr/templates/blog/index.html
Mylloon 65de1f1777
Some checks are pending
ci/woodpecker/push/publish Pipeline is pending
WIP: new blog layout
2023-04-24 18:01:38 +02:00

29 lines
671 B
HTML

<!DOCTYPE html>
<html class="index" lang="fr">
<head dir="ltr">
{{>blog/head.html}}
<link rel="stylesheet" href="/css/blog/index.css" />
</head>
<body class="index">
{{#data}}
<h1 id="title">Blog</h1>
{{#no_posts}}
<h2 class="subtitle">Aucun posts</h2>
{{/no_posts}} {{^no_posts}}
<div class="timeline">
<ul>
{{#posts}}
<li>
<span>DATE</span>
<div class="content">
<h3><a href="/blog/{{url}}">{{title}}</a></h3>
<p>SHORT DESC</p>
</div>
</li>
{{/posts}}
</ul>
</div>
{{/no_posts}} {{/data}} {{>footer.html}}
</body>
</html>