I\'m a Thymeleaf beginner. I started with a common layout page:
fragments/layout.html
I was also having this problem (Thank you nmy for referencing the documentation!) Here is what I noticed and how I solved it in my app:
Things to note from the documentation:
th:include
and th:replace
th:fragment
this
" option for finding selectorsWith these 3 things in mind, you can do the following:
fragments/layout.html:
Layout Generic Title< /title>
page.html
Page title
Hope this helps!