| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
- <head th:replace="~{web/common/fragments/HeadWeb :: head}"></head>
- <body>
- <div class="skipComment">
- <a href="#content">본문 바로가기</a>
- <a href="#gnb">주메뉴 바로가기</a>
- <a href="#footer">하단메뉴 바로가기</a>
- </div>
-
- <th:block th:replace="~{web/common/fragments/VariablesWeb :: variables}"></th:block>
- <!-- GNB -->
- <header id="header" th:replace="~{web/common/fragments/GnbWeb :: gnb}"></header>
- <!--// GNB -->
- <div id="container" class="container my">
- <div class="breadcrumb">
- <ul id="location">
- <li class="bread_home"><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MAIN);">홈</a></li>
- <li class="bread_2depth"><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_MYPAGE);">마이페이지</a></li>
- </ul>
- </div>
- <div class="wrap">
- <!-- CONTENT AREA -->
- <th:block layout:fragment="content"></th:block>
- <!-- // CONTENT AREA -->
- </div>
- </div>
- <!-- Footer -->
- <footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
- <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
- <script th:src="@{'/ux/pc/js/mypage.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/biz/mypage.js"></script>
- <script th:inline="javascript">
- /*<![CDATA[*/
- /*]]>*/
- </script>
- </body>
- </html>
|