我有 3 个 parsys div 的页脚。如果我向该 parsys 添加一些组件(例如 Text 组件),我将无法在其他页面中看到它。是否可以为网站内的所有页面使用 1 个公共页脚和 3 个 parsys 组件?
我有这个代码在我的myApp/components/page/footer.jsp
<%@include file="/libs/foundation/global.jsp" %>
<%@ page import="com.day.cq.commons.Doctype, com.day.cq.i18n.I18n, com.day.text.Text" %>
<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<div id="footer">
<hr />
<div id="left-footer-cell" class="footer-cell">
<cq:include path="fc1" resourceType="foundation/components/parsys" />
</div>
<div id="mid-footer-cell" class="footer-cell">
<cq:include path="fc2" resourceType="foundation/components/parsys" />
</div>
<div id="right-footer-cell" class="footer-cell">
<cq:include path="fc3" resourceType="foundation/components/parsys" />
</div>
</div>
谢谢你的帮助