MypageLayoutWeb.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <div id="container" class="container my">
  17. <div class="breadcrumb">
  18. <ul id="location">
  19. <li class="bread_home"><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MAIN);">홈</a></li>
  20. <li class="bread_2depth"><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MYPAGE);">마이페이지</a></li>
  21. </ul>
  22. </div>
  23. <div class="wrap">
  24. <!-- CONTENT AREA -->
  25. <th:block layout:fragment="content"></th:block>
  26. <!-- // CONTENT AREA -->
  27. </div>
  28. </div>
  29. <!-- Footer -->
  30. <footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
  31. <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
  32. <script th:src="@{'/ux/pc/js/mypage.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/biz/mypage.js"></script>
  33. <script th:inline="javascript">
  34. /*<![CDATA[*/
  35. /*]]>*/
  36. </script>
  37. </body>
  38. </html>