DefaultLayoutWeb.html 975 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <div class="skipComment">
  8. <a href="#content">본문 바로가기</a>
  9. <a href="#gnb">주메뉴 바로가기</a>
  10. <a href="#footer">하단메뉴 바로가기</a>
  11. </div>
  12. <th:block th:replace="~{web/common/fragments/VariablesWeb :: variables}"></th:block>
  13. <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
  14. <!-- GNB -->
  15. <header id="header" th:replace="~{web/common/fragments/GnbWeb :: gnb}"></header>
  16. <!--// GNB -->
  17. <!-- CONTENT AREA -->
  18. <th:block layout:fragment="content"></th:block>
  19. <!-- // CONTENT AREA -->
  20. <!-- Footer -->
  21. <footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
  22. <script th:inline="javascript">
  23. /*<![CDATA[*/
  24. $(document).ready(function() {
  25. });
  26. /*]]>*/
  27. </script>
  28. </body>
  29. </html>