]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/open_graph_helper.rb
Merge remote-tracking branch 'openstreetmap/pull/1240'
[rails.git] / app / helpers / open_graph_helper.rb
index 12c794dd08d6ddcb929a0bb73452e07e302f2297..e21a5648a7c3be9f4482855d657381215915b076 100644 (file)
@@ -4,9 +4,10 @@ module OpenGraphHelper
       "og:site_name" => t("layouts.project_name.title"),
       "og:title" => [t("layouts.project_name.title"), title].compact.join(" | "),
       "og:type" => "website",
-      "og:image" => image_path("osm_logo.svg", :host => SERVER_URL),
-      "og:image:width" => "200",
-      "og:image:height" => "200"
+      "og:image" => image_path("osm_logo_256.png", :host => SERVER_URL, :protocol => "http"),
+      "og:image:secure_url" => image_path("osm_logo_256.png", :host => SERVER_URL, :protocol => "https"),
+      "og:url" => url_for(:host => SERVER_URL),
+      "og:description" => t("layouts.intro_text")
     }
 
     tags.map do |property, content|