| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
- <head th:replace="~{common/fragments/header :: header}"></head>
- <body>
- <th:block th:replace="~{common/fragments/variables :: variables}"></th:block>
- <div id="wrapper" class="color-pastel">
- <!-- GNB -->
- <div th:replace="~{common/fragments/gnb :: gnb}"></div>
- <!--// GNB -->
-
- <!-- CONTENT AREA -->
- <div id="container" class="gray-bg">
- <!-- LNB -->
- <div th:replace="~{common/fragments/lnb :: lnb}"></div>
- <!--// LNB -->
-
- <!-- MAIN AREA -->
- <div id="main-wrapper">
- <div id="content" layout:fragment="content"></div>
-
- <!-- Footer -->
- <footer th:replace="~{common/fragments/footer :: footer}"></footer>
- <!--// Footer -->
- </div>
- <!-- // MAIN AREA -->
- </div>
- <!-- // CONTENT AREA -->
-
- </div>
- <script th:inline="javascript">
- /*<![CDATA[*/
- $(document).ready(function() {
-
- });
- /*]]>*/
- </script>
- </body>
- </html>
|