LoginLayoutMob.html 629 B

123456789101112131415161718192021222324252627282930
  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. <div class="app">
  9. <!-- CONTENT AREA -->
  10. <th:block layout:fragment="content"></th:block>
  11. <!-- // CONTENT AREA -->
  12. <th:block th:replace="~{mob/common/fragments/ScriptsMob :: scripts}"></th:block>
  13. <script th:inline="javascript">
  14. /*<![CDATA[*/
  15. $(document).ready(function() {
  16. });
  17. /*]]>*/
  18. </script>
  19. </div>
  20. </body>
  21. </html>