hugolib: Do not fall back to site title if not set in content file

See #5784
This commit is contained in:
Bjørn Erik Pedersen 2019-03-26 14:33:09 +01:00
parent 10bb614a70
commit 9bc6187b83
No known key found for this signature in database
GPG key ID: 330E6E2BD4859D8F
2 changed files with 5 additions and 3 deletions

View file

@ -545,7 +545,7 @@ func (p *pageMeta) applyDefaultValues() error {
}
}
if p.title == "" {
if p.title == "" && p.f.IsZero() {
switch p.Kind() {
case page.KindHome:
p.title = p.s.Info.title

View file

@ -1175,8 +1175,10 @@ func TestPageWithZeroFile(t *testing.T) {
}
func TestHomePageWithNoTitle(t *testing.T) {
b := newTestSitesBuilder(t).WithSimpleConfigFile().
WithTemplatesAdded("index.html", "Title|{{ with .Title }}{{ . }}{{ end }}|")
b := newTestSitesBuilder(t).WithConfigFile("toml", `
title = "Site Title"
`)
b.WithTemplatesAdded("index.html", "Title|{{ with .Title }}{{ . }}{{ end }}|")
b.WithContent("_index.md", `---
description: "No title for you!"
---