From 243129b6712eeb2f9cda61e06d6698c01df18d0c Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 27 Oct 2015 11:57:40 +0000 Subject: [PATCH 1/1] Add og:description to OpenGraph tags --- app/helpers/open_graph_helper.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/helpers/open_graph_helper.rb b/app/helpers/open_graph_helper.rb index cb72d7254..e21a5648a 100644 --- a/app/helpers/open_graph_helper.rb +++ b/app/helpers/open_graph_helper.rb @@ -6,7 +6,8 @@ module OpenGraphHelper "og:type" => "website", "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:url" => url_for(:host => SERVER_URL), + "og:description" => t("layouts.intro_text") } tags.map do |property, content| -- 2.43.2