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

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -