Why does the content of wicket:head show up in two places in my generated markup? If I have something like:
<html>
<head>
<wicket:head>
<script src="">
</wicket:head>
</head>
....
The markup will generate as:
<head>
<wicket:head>
<script src="">
</wicket:head>
</head>
<html>
<head>
<wicket:head>
<script src="">
</wicket:head>
</head>
This really screws up a number of _javascript_ components. Any way to get this to only generate once?
Also, how can I add content to wicket:head from a Page component?
Thanks.
