Don't add site name to og:title when page title is provided
This commit is contained in:
parent
67be6616b0
commit
eeb7e02f88
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ module OpenGraphHelper
|
|||
def opengraph_tags(title = nil, og_image = nil)
|
||||
tags = {
|
||||
"og:site_name" => t("layouts.project_name.title"),
|
||||
"og:title" => [title, t("layouts.project_name.title")].compact.join(" | "),
|
||||
"og:title" => title || t("layouts.project_name.title"),
|
||||
"og:type" => "website",
|
||||
"og:image" => og_image ? URI.join(root_url, og_image) : image_url("osm_logo_256.png"),
|
||||
"og:url" => url_for(:only_path => false),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue