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.
go-fly/tmpl/common.go

27 lines
641 B

package tmpl
import (
"github.com/taoshihan1991/imaptool/tools"
"html/template"
"net/http"
)
type CommonHtml struct{
Header template.HTML
Nav template.HTML
Rw http.ResponseWriter
}
func NewRender(rw http.ResponseWriter)*CommonHtml{
obj:=new(CommonHtml)
obj.Rw=rw
header := tools.FileGetContent("html/header.html")
nav := tools.FileGetContent("html/nav.html")
obj.Header=template.HTML(header)
obj.Nav=template.HTML(nav)
return obj
}
func (obj *CommonHtml)Display(file string,data interface{}){
main := tools.FileGetContent("html/"+file+".html")
t, _ := template.New(file).Parse(main)
t.Execute(obj.Rw, data)
}