The Object returned by getObject(folderPath) is a HippoFolder object. It doesn’t have nodes as it is on a different level of abstraction. What it has is HippoDocumentBean objects.
<#list folder.getDocuments() as document>
${document.name}
</#list>
something like that should work.