<#-- Displays a table of all the documents from a "Press Releases" folder under Company Home --> <#-- Obviously this folder needs to exist and the docs in it should have the title and description fields set --> <#list companyhome.children as child> <#if child.isContainer && child.name = "Press Releases"> <#list child.children as doc> <#if doc.isDocument>

${doc.properties.title}

${doc.properties.description}
${doc.content}