2024-10-10 17:37:22 +09:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<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-05 19:42:29 +09:00
|
|
|
|
2024-10-10 17:37:22 +09:00
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
|
<link th:href="@{/css/common.css}" rel="stylesheet" />
|
|
|
|
|
<script type="text/javascript" th:src="@{/js/common.js}"></script>
|
|
|
|
|
<meta name="Referrer" content="origin">
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div th:replace="fragments/header :: header"></div>
|
2024-10-05 19:42:29 +09:00
|
|
|
|
2024-10-10 17:37:22 +09:00
|
|
|
<div layout:fragment="content"></div>
|
2024-10-05 19:42:29 +09:00
|
|
|
|
2024-10-10 17:37:22 +09:00
|
|
|
<div th:replace="fragments/footer :: footer"></div>
|
|
|
|
|
</body>
|
2024-10-05 19:42:29 +09:00
|
|
|
</html>
|