| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!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[*/
- $(document).ready(function() {
-
- });
- /*]]>*/
- </script>
- </body>
- </html>
|