mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
tpl: Small Golint fixes
This commit is contained in:
parent
b71f391cd7
commit
7fa2cec906
1 changed files with 4 additions and 5 deletions
|
@ -101,16 +101,16 @@ func New() Template {
|
|||
return templates
|
||||
}
|
||||
|
||||
func partial(name string, context_list ...interface{}) template.HTML {
|
||||
func partial(name string, contextList ...interface{}) template.HTML {
|
||||
if strings.HasPrefix("partials/", name) {
|
||||
name = name[8:]
|
||||
}
|
||||
var context interface{}
|
||||
|
||||
if len(context_list) == 0 {
|
||||
if len(contextList) == 0 {
|
||||
context = nil
|
||||
} else {
|
||||
context = context_list[0]
|
||||
context = contextList[0]
|
||||
}
|
||||
return ExecuteTemplateToHTML(context, "partials/"+name, "theme/partials/"+name)
|
||||
}
|
||||
|
@ -199,9 +199,8 @@ func (t *GoHTMLTemplate) checkState() {
|
|||
func (t *GoHTMLTemplate) AddInternalTemplate(prefix, name, tpl string) error {
|
||||
if prefix != "" {
|
||||
return t.AddTemplate("_internal/"+prefix+"/"+name, tpl)
|
||||
} else {
|
||||
return t.AddTemplate("_internal/"+name, tpl)
|
||||
}
|
||||
return t.AddTemplate("_internal/"+name, tpl)
|
||||
}
|
||||
|
||||
func (t *GoHTMLTemplate) AddInternalShortcode(name, content string) error {
|
||||
|
|
Loading…
Reference in a new issue