templates/page.gsp (9 lines of code) (raw):
<%include "header.gsp"%>
<%include "menu.gsp"%>
<div class="page-header">
<h1>${content.title}</h1>
</div>
<p><em>${new java.text.SimpleDateFormat("dd MMMM yyyy", Locale.ENGLISH).format(content.date)}</em></p>
<p>${content.body}</p>
<hr />
<%include "footer.gsp"%>