Include header and footer in a Mustache template Sample

 

- 디렉토리 & 파일 구조

 

 

- 출력대상 컨텐츠 페이지 코드샘플

 

{{>layouts/header}}	<!-- layouts/header.mustache 파일을 include 한다 -->

<!--content-->
<div class="bg-dark text-white p-5">
<h1>{{username}} 님 반갑습니다.</h1>
</div>

{{>layouts/footer}}	<!-- layouts/footer.mustache 파일을 include 한다 -->