default.html 978 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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="~{common/fragments/header :: header}"></head>
  6. <body>
  7. <th:block th:replace="~{common/fragments/variables :: variables}"></th:block>
  8. <div id="wrapper" class="color-pastel">
  9. <!-- GNB -->
  10. <div th:replace="~{common/fragments/gnb :: gnb}"></div>
  11. <!--// GNB -->
  12. <!-- CONTENT AREA -->
  13. <div id="container" class="gray-bg">
  14. <!-- LNB -->
  15. <div th:replace="~{common/fragments/lnb :: lnb}"></div>
  16. <!--// LNB -->
  17. <!-- MAIN AREA -->
  18. <div id="main-wrapper">
  19. <div id="content" layout:fragment="content"></div>
  20. <!-- Footer -->
  21. <footer th:replace="~{common/fragments/footer :: footer}"></footer>
  22. <!--// Footer -->
  23. </div>
  24. <!-- // MAIN AREA -->
  25. </div>
  26. <!-- // CONTENT AREA -->
  27. </div>
  28. <script th:inline="javascript">
  29. /*<![CDATA[*/
  30. $(document).ready(function() {
  31. });
  32. /*]]>*/
  33. </script>
  34. </body>
  35. </html>