<#-- Table of docs in a specific folder, that have been created or modified in the last week -->

Documents created or modified in the last week

<#list space.childrenByXPath[".//*[subtypeOf('cm:content')]"] as child> <#if (dateCompare(child.properties["cm:modified"], date, 1000*60*60*24*7) == 1) || (dateCompare(child.properties["cm:created"], date, 1000*60*60*24*7) == 1)>
Name Created Date Modified Date
${child.properties.name} ${child.properties["cm:created"]?datetime} ${child.properties["cm:modified"]?datetime}