Thymleaf layout dialect 라이브러리를 사용해서 Thymleaf를 , , 등 모든 페이지에서 공통으로 사용하는 영역에 대해서 별도의 파일로 분리가 가능하다. 그리고 각각의 페이지에서 필요한 script나 style을 정의해 사용할 수도 있다. 이를 위해 사용되는 지시자로 fragment, layout, replace 등이 있다. 1) Thymleaf Layout Dialect 라이브러리 추가 (build.gradle.kt) /** Thymeleaf */ implementation("org.springframework.boot:spring-boot-starter-thymeleaf") /** Thymeleaf Layout Dialect */ implementation("nz.net.ultra..