mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
- 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
This commit is contained in:
13
config/alfresco/templates/readme.ftl
Normal file
13
config/alfresco/templates/readme.ftl
Normal file
@@ -0,0 +1,13 @@
|
||||
<#-- 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>
|
Reference in New Issue
Block a user