Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

  • using <sling:include> tag.
  • Wiki Markupusing <% sling.include("\[path to resource\]") ; %>&nbsp;%> 

To use sling:include in a JSP script , you have to use <sling:defineObjects/>  tag.

...

The html.jsp can be written in one of the following ways,

Wiki MarkupIf you are using <% sling.include("\[path to resource\]") ; %>&nbsp; create ; %>  create html.jsp as follows,

Code Block
<%@page session="false"%>
<%@taglib prefix="sling" uri="http://sling.apache.org/taglibs/sling/1.0"%>

<sling:defineObjects/>

<html>
	<body>
		<div id="header">
			<% sling.include("/content/header"); %>
		</div>
		<h1><%= currentNode.getProperty("title").getValue().getString() %></h1>
	</body>
</html>

...