mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
2cbdd65330
Fixes #3062
28 lines
934 B
Go
28 lines
934 B
Go
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()
|
|
}
|