Hello, I'm trying to integrate Cookiebot and am facing the following problem: <script> element of cookiebot has to be the first item in the <head> section, otherwise things don't work properly(see https://support.cookiebot.com/hc/en-us/community/posts/360007744680-Cookiebot-blocks-every-script-on-website if you're interested).
We have a bunch of stuff added in `renderHead(IHeaderResponse response)` methods and they get in front of cookiebot <script>, which I'm adding later in `onInitialize` with WebMarkupContainer. So, to get cookiebot as the first element in the head section: I thought of using `JavaScriptHeaderItem` in the `renderHead` method, but it doesn't seem to support attributes. Cookiebot requires the following attributes in <script>: `data-cbid` and `data-blockingmode`. Any ideas? We're using Wicket 8.12.0. Regards, Stepan Samarin.