Blame view

src/main/resources/templates/fragment/config.html 907 Bytes
a6468920   sangkiham   Spring Boot Board...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <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}">

          <link rel="stylesheet" th:href="@{/css/common/common.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>