16 lines
553 B
Ruby
16 lines
553 B
Ruby
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:type" => "website",
|
|
"og:image" => og_image || image_url("osm_logo_256.png"),
|
|
"og:url" => url_for(:only_path => false),
|
|
"og:description" => t("layouts.intro_text")
|
|
}
|
|
|
|
safe_join(tags.map do |property, content|
|
|
tag.meta(:property => property, :content => content)
|
|
end, "\n")
|
|
end
|
|
end
|