<html xmlns:wicket="http://wicket.apache.org">
<head>
<title>Wicket Examples - navomatic</title>
</head>
<body>
<wicket:extend>
<div wicket:id = "navomaticBorder">
<div>
<div><h3>Page 3</h3></div>
The links on the left are enabled and disabled without
any code at all. Here is the HTML for the navigation area,
which can be found in NavomaticBorder.html:
<pre>
<b>Navigation Links</b>
<p>
<wicket:link>
<a href = "Page1.html">Page1</a><br/>
<a href = "Page2.html">Page2</a><br/>
<a href = "Page3.html">Page3</a>
</wicket:link>
</p></pre>
The <wicket:link> tag turns on auto-linking, which
creates page links automatically at render-time. The
NavomaticBorder component is reused between all three pages,
adding navigation links to each.
</div>
</div>
</wicket:extend>
</body>
</html>