mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
- 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
14 lines
482 B
Plaintext
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>
|