DefaultLayoutMob.html 938 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="ko"
  3. xmlns:th="http://www.thymeleaf.org"
  4. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
  5. <head th:replace="~{mob/common/fragments/HeadMob :: head}"></head>
  6. <body>
  7. <th:block th:replace="~{mob/common/fragments/VariablesMob :: variables}"></th:block>
  8. <div class="app">
  9. <!-- GNB -->
  10. <th:block th:replace="~{mob/common/fragments/GnbMob :: gnb}"></th:block>
  11. <!--// GNB -->
  12. <!-- CONTENT AREA -->
  13. <th:block layout:fragment="content"></th:block>
  14. <!-- // CONTENT AREA -->
  15. <!-- Footer -->
  16. <th:block th:replace="~{mob/common/fragments/FooterMob :: footer}"></th:block>
  17. <th:block th:replace="~{mob/common/fragments/ScriptsMob :: scripts}"></th:block>
  18. <!-- <th:block th:replace="~{mob/common/fragments/MarketingScripts :: mscripts}"></th:block> -->
  19. <script th:inline="javascript">
  20. /*<![CDATA[*/
  21. $(document).ready(function() {
  22. });
  23. /*]]>*/
  24. </script>
  25. </div>
  26. </body>
  27. </html>