From 4e0c07c56da7da62777770d61dde2e145e13c91c Mon Sep 17 00:00:00 2001 From: Penar Musaraj Date: Tue, 25 Apr 2023 10:51:45 -0400 Subject: [PATCH] UX: Include subcategories in crawler view (#21227) Adds a bit more information to the categories view for crawlers, for better indexing of deep content. This only works when the "Subcategories with Featured Topics" is the selected layout. --- app/views/categories/index.html.erb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/views/categories/index.html.erb b/app/views/categories/index.html.erb index 93d3e170330..1812aca8367 100644 --- a/app/views/categories/index.html.erb +++ b/app/views/categories/index.html.erb @@ -20,6 +20,13 @@
<%= c.description&.html_safe %>
+ <% if c.subcategory_list.present? %> +
+ <% c.subcategory_list.each_with_index do |sc, index| %> + <%= sc.name %>  + <% end %> +
+ <% end %>