더북(TheBook)

먼저 템플릿으로 사용할 public/index.html 파일을 작성해 보자.

▼ public/index.html

<html>

<body>

Hello World

<p>

current time: {{ .time }}

</p>

</body>

</html>


다음은 핸들러 함수이다.

▼ main.go

s.HandleFunc("GET", "/", func(c *Context) {
    c.RenderTemplate("/public/index.html", map[string]interface{}{"time": time.Now()})
})

브라우저에서 http://127.0.0.1:8080로 접속하여 결과를 확인해 보자.

그림 8-13 템플릿 사용 화면
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.