aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/template.go
blob: b94fc3242acbc4790488c1fe24c73a4cabd7537b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package tpl

import (
	"html/template"
	"io"
)

// TODO(bep) make smaller
type Template interface {
	ExecuteTemplate(wr io.Writer, name string, data interface{}) error
	ExecuteTemplateToHTML(context interface{}, layouts ...string) template.HTML
	Lookup(name string) *template.Template
	Templates() []*template.Template
	New(name string) *template.Template
	GetClone() *template.Template
	RebuildClone() *template.Template
	LoadTemplates(absPath string)
	LoadTemplatesWithPrefix(absPath, prefix string)
	AddTemplate(name, tpl string) error
	AddTemplateFileWithMaster(name, overlayFilename, masterFilename string) error
	AddAceTemplate(name, basePath, innerPath string, baseContent, innerContent []byte) error
	AddInternalTemplate(prefix, name, tpl string) error
	AddInternalShortcode(name, tpl string) error
	Partial(name string, contextList ...interface{}) template.HTML
	PrintErrors()
	Funcs(funcMap template.FuncMap)
	MarkReady()
}