You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The layouts/_default/baseof.html file incorrectly defines the <title> tag, making it so all generated pages end up with the site title, as opposed to the page's title.
Later on, a duplicate <title> tag is inserted through layout/partials/flex/head.html, but is ignored by most browsers (tested: Firefox, Brave, Chrome)
This becomes extremely annoying after you realize that you bookmarked a bunch of documentation pages and they all have the same title in your bookmarks. Plus, it probably messes up SEO.
The attached patch fixes the problem by removing the duplicate tag, and adding back a conditional.
The layouts/_default/baseof.html file incorrectly defines the <title> tag, making it so all generated pages end up with the site title, as opposed to the page's title.
Later on, a duplicate <title> tag is inserted through layout/partials/flex/head.html, but is ignored by most browsers (tested: Firefox, Brave, Chrome)
This becomes extremely annoying after you realize that you bookmarked a bunch of documentation pages and they all have the same title in your bookmarks. Plus, it probably messes up SEO.
The attached patch fixes the problem by removing the duplicate tag, and adding back a conditional.
The text was updated successfully, but these errors were encountered: