| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!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 -->
- <!-- CONTENT AREA -->
- <th:block layout:fragment="content"></th:block>
- <!-- // CONTENT AREA -->
- <!-- Footer -->
- <footer id="footer" th:replace="~{web/common/fragments/FooterWeb :: footer}"></footer>
- <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
- <!-- <th:block th:replace="~{web/common/fragments/MarketingScripts :: mscripts}"></th:block> -->
- <script th:inline="javascript">
- /*<![CDATA[*/
- var fnSetCallcenterLnbList = function(lnbLvl) {
- let tag = '';
- tag += '<li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_FAQ);"' + (lnbLvl == 1 ? ' class="on"' : '') + '>FAQ</a></li>\n';
- tag += '<li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_ONETOONE_QNA);"' + (lnbLvl == 2 ? ' class="on"' : '') + '>1:1문의</a></li>\n';
- tag += '<li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_GOODS_QNA);"' + (lnbLvl == 3 ? ' class="on"' : '') + '>상품문의</a></li>\n';
- tag += '<li><a href="javascript:void(0);" onclick="cfnGoToPage(_PAGE_NOTICE);"' + (lnbLvl == 4 ? ' class="on"' : '') + '>공지</a></li>\n';
- tag += '</ul>';
- $('#callcenterLnbList').html();
- }
- $(document).ready(function() {
-
- });
- /*]]>*/
- </script>
- </body>
- </html>
|