| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
- <head th:replace="~{mob/common/fragments/HeadMob :: head}"></head>
- <body>
- <th:block th:replace="~{web/common/fragments/VariablesWeb :: variables}"></th:block>
-
-
- <div class="app">
- <!-- GNB -->
- <th:block th:replace="~{mob/common/fragments/GnbSubGoodsMob :: gnb}"></th:block>
- <!--// GNB -->
-
- <!-- CONTENT AREA -->
- <th:block layout:fragment="content"></th:block>
- <!-- // CONTENT AREA -->
- <!-- Footer -->
- <th:block th:replace="~{mob/common/fragments/FooterMob :: footer}"></th:block>
- <th:block th:replace="~{mob/common/fragments/ScriptsMob :: scripts}"></th:block>
- <script th:inline="javascript">
- /*<![CDATA[*/
- $(document).ready(function() {
-
- });
- /*]]>*/
- </script>
- </div>
-
- </body>
- </html>
|