ErrorLayoutMob.html 590 B

123456789101112131415161718192021222324252627
  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="~{web/common/fragments/HeadWeb :: head}"></head>
  6. <body>
  7. <th:block th:replace="~{web/common/fragments/VariablesWeb :: variables}"></th:block>
  8. <!-- CONTENT AREA -->
  9. <th:block layout:fragment="content"></th:block>
  10. <!-- // CONTENT AREA -->
  11. <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
  12. <script th:inline="javascript">
  13. /*<![CDATA[*/
  14. $(document).ready(function() {
  15. });
  16. /*]]>*/
  17. </script>
  18. </body>
  19. </html>