We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The <title> element does not contain the correct string.
<title>
The behaviour I have observed is this:
I have observed this behaviour in the following locations:
This line in partials/head.html could be the culprit
<title>{{ if .IsHome }}{{ .Title }}{{ else }}{{ .Title }} · {{ .Site.Title }}{{ end }}</title>
Should this line be:
<title>{{ if .IsHome }}{{ .Site.Params.Title }}{{ else }}{{ .Title }} · {{ .Site.Params.Title }}{{ end }}</title>
instead?
The text was updated successfully, but these errors were encountered:
Thank you! For some strange reason this was not affecting my production site (on Netlify) but just my locally served home page. This change fixed it.
I copied the head.html page from the theme folder to my main /layouts/partials folder, then made the changes there.
Sorry, something went wrong.
No branches or pull requests
The
<title>
element does not contain the correct string.The behaviour I have observed is this:
<title>
tagI have observed this behaviour in the following locations:
This line in partials/head.html could be the culprit
Should this line be:
instead?
The text was updated successfully, but these errors were encountered: