Files
alfresco-community-repo/config/alfresco/templates/readme.ftl
David Caruana 4c232e02b1 - Addition of Mike's "readme" presentation template
- Bootstrap updated & patch created
- Applied to Web Scripts folders
- Fixed Importer bug found with above import patch files

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6102 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2007-06-25 15:30:07 +00:00

14 lines
482 B
Plaintext

<#-- Displays the contents of readme.html and/or the evaluated readme.ftl if they exist in the current space. -->
<#assign htmlFilename = "readme.html"/>
<#assign ftlFilename = "readme.ftl"/>
<#if space?exists>
<#if space.childByNamePath["${htmlFilename}"]?exists>
${space.childByNamePath[htmlFilename].content}
</#if>
<#if space.childByNamePath["${ftlFilename}"]?exists>
<#include space.childByNamePath["${ftlFilename}"].nodeRef>
</#if>
</#if>