24 lines
935 B
HTML
Raw Normal View History

2024-10-10 17:37:22 +09:00
<!DOCTYPE html>
2024-10-21 17:25:49 +09:00
<html lagn="ko"
xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
xmlns="http://www.w3.org/1999/html">
2024-10-10 17:37:22 +09:00
<head>
2024-10-21 17:25:49 +09:00
<!-- <th:block layout:replace="fragments/includes" ></th:block>-->
<th:block th:replace="fragments/includes :: includes"></th:block>
<!-- layout:fragment="head" -->
<th:block layout:fragment="head"></th:block>
<!-- <th:block layout:replace="fragments/title" ></th:block> -->
<th:block th:replace="fragments/title :: title"></th:block>
2024-10-10 17:37:22 +09:00
</head>
2024-10-05 19:42:29 +09:00
2024-10-21 17:25:49 +09:00
<body>
<!--<th:block th:replace="fragments/header :: header"></th:block>-->
<th:block th:replace="fragments/header :: header"></th:block>
<!--<th:block layout:fragment="content"></th:block>-->
<th:block layout:fragment="content"></th:block>
<!--<th:block th:replace="fragments/footer :: footer"></th:block>-->
<th:block th:replace="fragments/footer :: footer"></th:block>
2024-10-10 17:37:22 +09:00
</body>
2024-10-21 17:25:49 +09:00
2024-10-05 19:42:29 +09:00
</html>