Hi there
I'm trying to make a dedicated page for listing my blog posts.
I'm creating a new file for this as templates/weblog.ftl with content
-----------------------------------------------
<#include "header.ftl">
<#include "menu.ftl">
<h1>Blog</h1>
<br />
<#list posts as post>
<#if (post.status == "published")>
<p><a href="${post.uri}"><h2>${post.title}</h2></a></p>
<p style="text-align: center;">${post.date?string("dd MMMM yyyy")}</p>
<br />
</#if>
</#list>
<#include "footer.ftl">
-----------------------------------------------
but apparently that's not enough, since jbake doesn't generate an HTML file in the output directory.
any idea what's missing?
