hugolib: Enable override of theme base template only
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 14 Dec 2016 19:12:03 +0000 (20:12 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 15 Dec 2016 20:35:38 +0000 (21:35 +0100)
commita3a67163f93b4fc16c2cc0343ffb532631ec4c8b
treef311e311e00c3eaad0b173c79420a5b64fd0e445
parent596bbea815f9215bc08806c30183631278318251
hugolib: Enable override of theme base template only

This commit fixes the base template lookup order to match the behaviour of regular templates.

```
1. <current-path>/<template-name>-baseof.<suffix>, e.g. list-baseof.<suffix>.
2. <current-path>/baseof.<suffix>
3. _default/<template-name>-baseof.<suffix>, e.g. list-baseof.<suffix>.
4. _default/baseof.<suffix>

For each of the steps above, it will first look in the project, then, if theme is set,
in the theme's layouts folder.
```

Fixes #2783
helpers/path.go
hugolib/template_test.go [new file with mode: 0644]
tpl/template.go