func GetTemplate(name string, t bundle.Template) *template.Template { if x := t.Lookup("shortcodes/" + name + ".html"); x != nil { return x } return t.Lookup("_internal/shortcodes/" + name + ".html") }
func ShortcodeRender(name string, data *ShortcodeWithPage, t bundle.Template) string { buffer := new(bytes.Buffer) t.ExecuteTemplate(buffer, "shortcodes/"+name+".html", data) return buffer.String() }
func GetTemplate(name string, t bundle.Template) *template.Template { return t.Lookup("shortcodes/" + name + ".html") }