From 10c40775e58412d10f1e752ffca6dbb674d89eee Mon Sep 17 00:00:00 2001 From: Arpit Jalan Date: Thu, 30 Jul 2015 19:29:01 +0530 Subject: [PATCH] FEATURE: add Open Graph tags on category pages --- app/views/list/list.erb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/views/list/list.erb b/app/views/list/list.erb index dd75051b409..a6768190d38 100644 --- a/app/views/list/list.erb +++ b/app/views/list/list.erb @@ -49,6 +49,8 @@ <% if @category %> <% content_for :head do %> <%= auto_discovery_link_tag(:rss, { action: :category_feed }, title: t('rss_topics_in_category', category: @category.name)) %> + <%= crawlable_meta_data(title: @category.name, + description: @category.description) %> <% end %> <% end %>