I want to have something like the following.
<head>
<% if deployment == true %>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<% else %>
<script src="js/lib/ref/jquery-1.6.2.js"></script>
<% endif %>
</head>
How can I do this in wicket?
Update:
Sorry, I was simplifying. Actually I want to include this just before the close body tag.