<@td.fileProperties>

Example Usage:

<#if params['projectKey']?? && params['itemKey']??>
  <@td.fileProperties 
       var="itemData" 
       projectKey="${params['projectKey']}" 
       itemKey="${params['itemKey']}"/>
</#if>

<#if itemData??>
  <h1>${itemData.properties.specifiedDetails.title?html}</h1>
<#else>
  <h1>No such file.</h1>
</#if>