| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : GnbSubMob.html
- * @desc : GNB Sub (모바일용)
- *============================================================================
- * STYLE24
- * Copyright(C) 2020 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.03.08 gagamel 최초 작성
- *******************************************************************************
- -->
- <th:block th:fragment="gnb">
- <header class=""> <!-- 서브페이지에서는 <header>의 클래스.main 제거 -->
- <a href="#mainCon" class="skipNav">본문바로가기</a>
-
- <section class="htop" id="htopSub" style="background: #fff;">
- <button class="btn_back" title="이전페이지로">
- <span>
- <i class="gl1"></i>
- <i class="gl2"></i>
- <i class="gl3"></i>
- </span>
- </button>
- <h1 id="htopTitle">고객센터</h1>
- </section>
- </header>
-
- <script th:inline="javascript">
- /*<![CDATA[*/
-
- /*]]>*/
- </script>
- </th:block>
- </html>
|