DefaultLayoutMob.html 841 B

12345678910111213141516171819202122232425262728293031323334353637
  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="~{web/common/fragments/VariablesWeb :: variables}"></th:block>
  8. <th:block th:replace="~{mob/common/fragments/ScriptsMob :: scripts}"></th:block>
  9. <div class="app">
  10. <!-- GNB -->
  11. <th:block th:replace="~{mob/common/fragments/GnbMob :: gnb}"></th:block>
  12. <!--// GNB -->
  13. <!-- CONTENT AREA -->
  14. <th:block layout:fragment="content"></th:block>
  15. <!-- // CONTENT AREA -->
  16. <!-- Footer -->
  17. <th:block th:replace="~{mob/common/fragments/FooterMob :: footer}"></th:block>
  18. <script th:inline="javascript">
  19. /*<![CDATA[*/
  20. $(document).ready(function() {
  21. });
  22. /*]]>*/
  23. </script>
  24. </div>
  25. </body>
  26. </html>