셀프체크
다음과 같이 랜덤으로 명언이 나오는 페이지를 만들려고 합니다.
이를 위한 뷰 템플릿 파일(quote.mustache)과 컨트롤러(SecondController.java)가 다음과 같을 때 ㉠~㉣에 들어갈 코드를 작성하세요.
templates/quote.mustache
{{>layouts/header}}
<div class="bg-dark text-white p-5">
<h1>{{randomQuote}}</h1>
</div>
{{>layouts/footer}}