Files
eapim-portal/src/main/resources/templates/views/layout/index_layout.html
T
2025-12-05 14:44:30 +09:00

28 lines
642 B
HTML

<!doctype html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<head th:replace="fragment/head :: headFragment">
<meta charset="utf-8">
</head>
<body>
<!-- header -->
<th:block th:replace="~{fragment/kjbank/header_container :: headerFragment('')}"></th:block>
<th:block th:replace="~{fragment/kjbank/header_container :: headerScript}"></th:block>
<div>
<section layout:fragment="contentFragment">
</section>
<th:block layout:fragment="contentScript">
</th:block>
</div>
<footer th:replace="fragment/footer :: footerFragment"></footer>
</body>
</html>