먼저 템플릿으로 사용할 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로 접속하여 결과를 확인해 보자.
