Versions Compared

Key

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

...

It's possible to include fragments from other pages as well, even without using the <wicket:fragment>...</wicket:fragment> tags:

Panel

NB. This is not recommended usage: consider using Panels instead

Code Block
titleTest.html
<html>
<head>
	<title>Title</title>
</head>
<body>
	<span wicket:id="target">
		This will be replaced
	</span>
</body>
</html>

...