hugolib, output: Gofmt

This commit is contained in:
Bjørn Erik Pedersen
2017-03-28 01:18:15 +02:00
parent f2fbf0b2ea
commit af55ec7661
2 changed files with 5 additions and 5 deletions

View File

@@ -137,10 +137,10 @@ func CreateTemplateNames(d TemplateLookupDescriptor) (TemplateNames, error) {
// in the theme's layouts folder.
// Also note that the <current-path> may be both the project's layout folder and the theme's.
pairsToCheck := [][]string{
[]string{baseTemplatedDir, currBaseFilename},
[]string{baseTemplatedDir, baseFilename},
[]string{"_default", currBaseFilename},
[]string{"_default", baseFilename},
{baseTemplatedDir, currBaseFilename},
{baseTemplatedDir, baseFilename},
{"_default", currBaseFilename},
{"_default", baseFilename},
}
Loop: