Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The header.jsp is as follows, 

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

<sling:defineObjects/>

<div>
&nbsp; 	<p style="color:blue;">
&nbsp;&nbsp;&nbsp; 		<img src="/images/sling.jpg"  align="right"/>
&nbsp;&nbsp; &nbsp;			<%= currentNode.getProperty("headline").getValue().getString() %>
&nbsp; 	</p>
</div>
&nbsp;

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

...