Adding a custom footer to aem/start.html
Hi Team,
I have a requirement where I need to add a custom footer to the aem/start.html page.
I saw the below code in "/libs/granite/ui/components/shell/page/page.jsp " where there is a globalfooter being referred to but I do not see one in the start up page.
Resource globalFooter = resourceResolver.getResource("/mnt/overlay/granite/ui/content/globalfooter");
if (globalFooter != null) {%>
<%for (Iterator<Resource> it = globalFooter.listChildren(); it.hasNext();) {
%><div> Footer Inside Loop Here</div><sling:include resource="<%= it.next() %>" /><%
}
}
Can somebody help to add a custom footer to the aem landing page ("aem/start.html")
Thanks,
Debasis
