————不解决随意可以百度的问题
template 语法
template 自定义函数
t, _ := template.New("user.html").Funcs(template.FuncMap{"showTime": func(ts int32) string {
return time.Unix(int64(ts), 0).Format("2006-01-02 15:04:05")
}}).ParseFiles("static/views/user.html", "static/views/ref.html")