form in edit template; name changes; assets.go in debug mode

This commit is contained in:
Henrique Dias
2015-09-13 12:28:26 +01:00
parent 5d7de7902e
commit e7e58debad
4 changed files with 78 additions and 122 deletions

View File

@@ -14,14 +14,14 @@ const (
footerMark = "{{#FOOTER#}}"
)
// Info type
type Info struct {
// Page type
type Page struct {
Title string
Body interface{}
}
// Render the page
func (p *Info) Render(name string, w http.ResponseWriter) (int, error) {
func (p *Page) Render(name string, w http.ResponseWriter) (int, error) {
rawHeader, err := assets.Asset("templates/header" + templateExtension)
if err != nil {