#-- 3 column list of image "thumbnails" in the current space -->
<#assign colcount=0>
<#list space.children as child>
<#if child.isDocument && (child.mimetype = "image/png" || child.mimetype = "image/jpeg" || child.mimetype = "image/gif")>
<#if colcount % 3 = 0>#if>
${child.properties.name} |
<#if colcount % 3 = 2>
#if>
<#assign colcount=colcount+1>
#if>
#list>