Files
www.kamkow1lair.pl/templates/index.ftl
Debian 8e10c0e458 Init
2025-09-08 23:58:12 +02:00

20 lines
455 B
Plaintext

<#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">