28 lines
642 B
HTML
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>
|