I have a layout.html which contains a footer part:
<footer th:fragment="site-footer">
© Spring MVC Blog System, 2016
</footer>
I want it to my index.html as replacement:
<div th:replace="layout :: site-footer"></div>
It should be really simple, but i still run into exception, and i have no clue why.
Exception processing template "index": Exception parsing document: template="layout", line 2 - column 16 (index:12)
have you seen this, what is at line 2 - column 16 of layout.html – Pavan Kumar Jorrigala<html xmlns:th="http://www.thymeleaf.org">
line. – DimaSan