mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-29 20:12:09 -05:00
Return early from appendThemeTemplates
This commit is contained in:
parent
c50c66879d
commit
3529152efe
1 changed files with 26 additions and 24 deletions
|
@ -1448,7 +1448,10 @@ func errorCollator(results <-chan error, errs chan<- error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Site) appendThemeTemplates(in []string) []string {
|
func (s *Site) appendThemeTemplates(in []string) []string {
|
||||||
if s.hasTheme() {
|
if !s.hasTheme() {
|
||||||
|
return in
|
||||||
|
}
|
||||||
|
|
||||||
out := []string{}
|
out := []string{}
|
||||||
// First place all non internal templates
|
// First place all non internal templates
|
||||||
for _, t := range in {
|
for _, t := range in {
|
||||||
|
@ -1471,8 +1474,7 @@ func (s *Site) appendThemeTemplates(in []string) []string {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return out
|
return out
|
||||||
}
|
|
||||||
return in
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type taxRenderInfo struct {
|
type taxRenderInfo struct {
|
||||||
|
|
Loading…
Reference in a new issue