0
I’m including a footer as follows in my home:
<div th:replace="footer :: footer"></div>
And inside the footer I need to include some overlays:
<div th:include="overlay-terminos-condiciones"></div>
<div th:include="overlay-protecion-datos"></div>
However I try to call in the same way as the footer and it does not work as expected, what is the correct way to call one include inside the other? They are all in the same folder, both footer.html and overlays . html.