+
+
+ <#assign isImage=node.isDocument && (node.mimetype = "image/gif" || node.mimetype = "image/jpeg" || node.mimetype = "image/png")>
+ <#assign isVideo=node.isDocument && node.mimetype?starts_with("video/")>
+ <#if isImage>
+
+ <#elseif isVideo>
+
+ <#else>
+
+ #if>
+ |
+
+
+
+ <#if node.properties.title?exists>
+ Title: | ${node.properties.title?html} |
+ #if>
+ <#if node.properties.description?exists>
+ Description: | ${node.properties.description?html} |
+ #if>
+ Created: | ${node.properties.created?datetime} |
+ Creator: | ${node.properties.creator} |
+ Modified: | ${node.properties.modified?datetime} |
+ Modifier: | ${node.properties.modifier} |
+ <#if node.properties.owner?exists>
+ Owner: | ${node.properties.owner} |
+ #if>
+ <#if node.properties.author?exists>
+ Author: | ${node.properties.author} |
+ #if>
+ <#if node.isDocument>
+ Size: | ${(node.size / 1000)?string("0.##")} KB |
+ <#if !isImage && !isVideo>
+ <#assign c=cropContent(node.properties.content, 512)>
+ <#if c?length != 0>
+
+ Preview: |
+
+ ${c?html?replace('$', ' ', 'rm')}<#if (c?length >= 512)>...#if>
+ |
+
+ #if>
+ #if>
+ #if>
+
+ |
+
+