최초 세팅
This commit is contained in:
27
src/main/resources/templates/web/layout/layout.html
Normal file
27
src/main/resources/templates/web/layout/layout.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user