형들이게 동작이 안하는데 코드상으로 잘못된점이 있을까?
index.html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorator="layout/layout">
<th:block layout:fragment="content">
<div>
hello, page!
</div>
</th:block>
</html>
-----------------------------------------------------
layout.html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<body>
<div>
hello, layout!
<th:block layout:fragment="content"></th:block>
</div>
</body>
</html>
댓글 0