Blame view

src/main/resources/templates/layout/oneDoc_layout.html 727 Bytes
d434ebaa   sangkiham   회원가입화면추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  <!DOCTYPE html>

  

  <html lagn="ko" 

        xmlns:th="http://www.thymeleaf.org"

        xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">

  

      <head>

          <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

          <title>&gt;**&lt;</title>

          

          <!-- config fragment 사용 -->

          <th:block th:replace="fragment/configNoCustom :: configFragment" ></th:block>

      </head>

      

      <body>

          <!-- 

              content fragment 사용 

              현재 layout을 사용하는 content fragment의 내용을 삽입한다.

          -->

          <div  style="height: 100%;">

  	        <th:block layout:fragment="content"></th:block>

          </div>

      </body>

  

  </html>