From 06c11a32354716a2230a342487ea8210b6c99838 Mon Sep 17 00:00:00 2001 From: Arpit Jalan Date: Thu, 12 Nov 2015 12:33:11 +0530 Subject: [PATCH] FIX: do not include word 'Topics' in title of category pages for Googlebot --- app/views/list/list.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/list/list.erb b/app/views/list/list.erb index df4dffd4da2..cf6cebed844 100644 --- a/app/views/list/list.erb +++ b/app/views/list/list.erb @@ -60,7 +60,7 @@ <% if @title %> <% content_for :title do %><%= @title %><% end %> <% elsif @category %> - <% content_for :title do %><%=@category.name%> <%=t('topics')%><% end %> + <% content_for :title do %><%= @category.name %><% end %> <% elsif params[:page] %> <% content_for :title do %><%=t 'page_num', num: params[:page].to_i + 1 %><% end %> <% end %>