2024-10-05 19:42:29 +09:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
|
|
|
xmlns:th="http://www.thymeleaf.org"
|
|
|
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
|
|
|
|
layout:decorate="~{layout/default_layout}">
|
|
|
|
|
|
|
|
|
|
<th:block layout:fragment="head">
|
|
|
|
|
<title>Spring Boot</title>
|
|
|
|
|
|
|
|
|
|
<!--/* css */-->
|
|
|
|
|
<link th:href="@{/css/common.css}" rel="stylesheet" />
|
|
|
|
|
</th:block>
|
|
|
|
|
<body>
|
2024-10-10 17:37:22 +09:00
|
|
|
<th:block layout:fragment="header" th:include="@{fragments/header}"></th:block>
|
2024-10-05 19:42:29 +09:00
|
|
|
|
|
|
|
|
<div layout:fragment="content" class="content">
|
|
|
|
|
<h2>This is Content</h2>
|
|
|
|
|
</div>
|
|
|
|
|
|
2024-10-10 17:37:22 +09:00
|
|
|
<th:block layout:fragment="footer" th:include="@{fragments/footer}"></th:block>
|
2024-10-05 19:42:29 +09:00
|
|
|
</body>
|
|
|
|
|
</html>
|