I am building a website with Hugo. In the config.toml page there is:
title = "mySite"
And in the markdown file for the About page, there is:
title: About
This works and results in a browser tab that says, About - mySite.
The problem arises on the home page where the browser tab says, mySite - mySite.
The markdown home page does define title:
title: long name of post
Browsing the Hugo files, I see that head.html has the line:
<title>{{ if .Page.Title }}{{ .Page.Title }} - {{ end }}{{ .Site.Title }}</title>
It appears that .Page.Title = .Site.Title for the home page. How can I set the home page .Page.Title to be "Home" so that the browser tab of the home page reads, "Home - mySite"?