configNoCustom.html
837 Bytes
<html lagn="ko"
xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<!--configFragment 선언-->
<th:block th:fragment="configFragment">
<!-- 이 영역에 공통으로 사용할 css, js library를 선언한다. -->
<link rel="stylesheet" th:href="@{/css/common/bootstrap.css}">
<script th:src="@{/js/common/jquery.js}"></script>
<script th:src="@{/js/common/jquery.form.js}"></script>
<script th:src="@{/js/common/bootstrap.js}"></script>
<!-- Content Page의 CSS fragment 삽입 -->
<th:block layout:fragment="css"></th:block>
<!-- Content Page의 script fragment 삽입 -->
<th:block layout:fragment="script"></th:block>
</th:block>
</html>