This commit is contained in:
Debian
2025-09-08 23:58:12 +02:00
commit 8e10c0e458
35 changed files with 1229 additions and 0 deletions

20
templates/index.ftl Normal file
View File

@ -0,0 +1,20 @@
<#include "header.ftl">
<#include "menu.ftl">
<div class="page-header">
<h1>Blog</h1>
</div>
<#list posts as post>
<#if (post.status == "published")>
<a href="${post.uri}"><h1>${post.title}</h1></a>
<p>${post.date?string("dd MMMM yyyy")}</p>
<p>${post.body}</p>
</#if>
</#list>
<hr />
<p>Older posts are available in the <a href="${content.rootpath}${config.archive_file}">archive</a>.</p>
<#include "footer.ftl">