You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gosuv/res_nobindata.go

26 lines
507 B

// +build !bindata
package main
import (
"html/template"
"io"
"io/ioutil"
"net/http"
"path/filepath"
)
func init() {
fs := http.FileServer(http.Dir(templateDir))
http.Handle("/res/", http.StripPrefix("/res/", fs))
}
func executeTemplate(wr io.Writer, name string, data interface{}) {
path := filepath.Join(templateDir, name+".html")
body, err := ioutil.ReadFile(path)
if err != nil {
panic(err)
}
template.Must(template.New("t").Delims("[[", "]]").Parse(string(body))).Execute(wr, data)
}