我有以下 xml 自定义来部署我声明的自定义:
<module>
<id>Global changes</id>
<auto-deploy>true</auto-deploy>
<!-- Enhance individual WebScripts when their paths match -->
<customizations>
<customization>
<targetPackageRoot>org.alfresco</targetPackageRoot>
<sourcePackageRoot>fr.mypackage</sourcePackageRoot>
</customization>
</customizations>
</module>
我正在尝试向 header.get.html.ftl 添加一个额外的 CSS,所以我在以下路径下创建了 webscripts/fr/mypackage/components/header/ header.get.html.ftl 并将以下内容添加到它 :
<@markup id="css-additional" target="css" action="after" scope="global">
<@link href="${url.context}/res/themes/${theme}/css/global-header.css" group="header"/>
</@>
但是css没有添加到标题中。我在这里错过了重要的一步吗?
编辑:如果这有帮助,我应该补充说我正在开发 4.2.e。