예제 #1
0
파일: shortcode.go 프로젝트: jcdny/hugo
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")
}
예제 #2
0
파일: shortcode.go 프로젝트: 4honor/hugo
func GetTemplate(name string, t bundle.Template) *template.Template {
	return t.Lookup("shortcodes/" + name + ".html")
}