go - Template layouts in revel -
is possible use template layouts in revel. example have root.html contains {{define "main"}}{{end}}
tag. call executetemplate(out, "main", nil)
http://golang.org/pkg/html/template/#template.executetemplate
something c.renderlayout()
you can define want conf/routes file. can call action name want:
package controllers import ( "github.com/revel/revel" ) func (c name) root() revel.result { c.render() }
views/name/root.html
other way can this:
views/controler/nameaction.html
{{template "root.html" .}}
views/root.html
<p>bla, bla</p>
Comments
Post a Comment