GoodsLayoutWeb.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <!-- GNB -->
  14. <header id="header" th:replace="~{web/common/fragments/GnbWeb :: gnb}"></header>
  15. <!--// GNB -->
  16. <!-- CONTENT AREA -->
  17. <th:block layout:fragment="content"></th:block>
  18. <!-- // CONTENT AREA -->
  19. <!-- Footer -->
  20. <footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
  21. <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
  22. <!-- <th:block th:replace="~{web/common/fragments/MarketingScripts :: mscripts}"></th:block> -->
  23. <script th:inline="javascript">
  24. /*<![CDATA[*/
  25. $(document).ready(function() {
  26. });
  27. /*]]>*/
  28. </script>
  29. </body>
  30. </html>