공통적으로 사용하는 부분들에 대해서는 모듈화를 하여 쉽게 적용할 수있다 .
layout.html생성
<head>를 include할거임
<!DOCTYPE html>
<head th:fragment="head">
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" th:href="@{/bootstrap.min.css}" />
<!-- sbb CSS -->
<link rel="stylesheet" type="text/css" th:href="@{/style.css}" />
<title>Hello, sbb!</title>
</head>
<body>
<!-- th:fragment="이름" 으로 공통 태그부분 작성 -->
</body>
</html>
question_list.html 과 question_detail <head> 변경
<head th:replace=" layout::head " ></head>
적용하고 에러 안나는지 테스트해보기
'BACKEND > SpringBoot' 카테고리의 다른 글
답변(Answer) 유효성 검사 추가 (0) | 2023.11.09 |
---|---|
질문 등록 처리 및 유효성검사 (5) | 2023.11.09 |
질문 목록/상세보기 - 부트스트랩 적용 (0) | 2023.11.09 |
스태틱 디렉터리와 스타일시트 (0) | 2023.11.09 |
답변 등록하기 (0) | 2023.11.09 |