I would like to choose the position of the children elements inside a fragment using Thymeleaf like in the following examples.
fragments.html:
<div th:fragment="awesomeFragment">
Some Text
<div><!-- children must be here --></div>
</div>
view.html:
<div th:replace="fragments :: awesomeFragment">
<a href="www.google.com"/>
</div>
Expected output:
<div>
Some Text
<div><a href="www.google.com"/></div>
</div>
Is it possible? If so, how could I do this?
You can do it via layouts.
Use Thymeleaf Layout Dialect for this.
(If you using
Spring Boot
it's already turned on!)The layout will be presented in this form :
And you page will be:
I tried it in my
Thymeleaf
test project. The source code of the page in browser turned out like you wanted :