20 lines
436 B
HTML
20 lines
436 B
HTML
<!DOCTYPE html>
|
|
<html class="index" lang="fr">
|
|
<head dir="ltr">
|
|
{{>head.html}}
|
|
</head>
|
|
<body class="index">
|
|
{{#data}}
|
|
<h1 id="title">Blog</h1>
|
|
<div id="content">
|
|
{{^posts}}
|
|
<h2 class="subtitle">Aucun posts</h2>
|
|
{{/posts}} {{#posts}}
|
|
<h2 class="subtitle">
|
|
<a href="/blog/{{url}}">{{title}}</a>
|
|
</h2>
|
|
{{/posts}}
|
|
</div>
|
|
{{/data}} {{>footer.html}}
|
|
</body>
|
|
</html>
|