28 lines
855 B
HTML
28 lines
855 B
HTML
|
|
<!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">
|
||
|
|
<head>
|
||
|
|
<th:block th:replace="/web/layout/layoutHead :: layoutHead"></th:block>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<!-- 상단 스크립트 타임리프 변수 선언 -->
|
||
|
|
<th:block layout:fragment="layout_top_script"></th:block>
|
||
|
|
|
||
|
|
<div class="project_wrap">
|
||
|
|
<th:block th:replace="/web/layout/layoutHeader :: layoutHeader"></th:block>
|
||
|
|
|
||
|
|
<!-- 오른쪽내용 -->
|
||
|
|
<th:block layout:fragment="layoutContent"></th:block>
|
||
|
|
<th:block th:replace="/web/layout/layoutFooter :: layoutFooter"></th:block>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- 모달 -->
|
||
|
|
<th:block layout:fragment="layoutContentModal"></th:block>
|
||
|
|
|
||
|
|
<!-- 스크립트 -->
|
||
|
|
<th:block layout:fragment="layoutContentScript"></th:block>
|
||
|
|
</body>
|
||
|
|
</html>
|