3 빈 화면의 greetings.mustache 파일이 뜹니다. 제일 윗줄에 doc를 입력한 다음 Tab키를 누르면 기본 HTML 코드가 자동으로 작성됩니다. 본문에 다음과 같이 <h1>홍팍님, 반갑습니다!</h1>를 추가합니다.
templates/greetings.mustache
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0,
maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<h1>홍팍님, 반갑습니다!</h1>
</body>
</html>
이렇게 해서 뷰 템플릿 페이지를 작성했습니다. 이 페이지를 웹 브라우저에서 보려면 어떻게 해야 할까요? 바로 뷰 템플릿의 동료인 컨트롤러와 모델을 이용합니다.