<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
</head>
<body>
<!-- エラーメッセージ(404 Not Foundなど) -->
<div th:fragment="error">
<div class="text-center">
<div class="display-1" th:text="${status}"></div>
<div class="text-muted mb-4" th:text="${error}"></div>
<div class="text-muted">ページを表示できません</div>
<a th:href="@{/}">← ホームに戻る</a>
</div>
</div>
</body>
</html>