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.
|
3 years ago | |
---|---|---|
templates | 7 years ago | |
.drone.yml | 3 years ago | |
.gitignore | 3 years ago | |
LICENSE | 7 years ago | |
README.md | 3 years ago | |
circle.yml | 5 years ago | |
funcs.go | 6 years ago | |
go.mod | 3 years ago | |
go.sum | 3 years ago | |
loader.go | 3 years ago | |
options.go | 5 years ago | |
renders.go | 3 years ago | |
renders_test.go | 3 years ago |
README.md
renders

Middleware renders is a go template render middlewaer for Tango.
Version
v0.2.0510 Added RenderBytes for Renderer and simplifed codes.
Installation
go get gitea.com/tango/renders
Simple Example
type RenderAction struct {
renders.Renderer
}
func (x *RenderAction) Get() {
x.Render("test.html", renders.T{
"test": "test",
})
}
func main() {
t := tango.Classic()
t.Use(renders.New(renders.Options{
Reload: true, // if reload when template is changed
Directory: "./templates", // Directory to load templates
Funcs: template.FuncMap{
"test": func() string {
return "test"
},
},
// Vars is a data map for global
Vars: renders.T{
"var": var,
}
Charset: "UTF-8", // Appends the given charset to the Content-Type header. Default is UTF-8
// Allows changing of output to XHTML instead of HTML. Default is "text/html"
HTMLContentType: "text/html",
DelimsLeft:"{{",
DelimsRight:"}}", // default Delims is {{}}, if it conflicts with your javascript template such as angluar, you can change it.
}))
}
License
This project is under BSD License. See the LICENSE file for the full license text.