mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
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.
This commit is contained in:
parent
0ea5ae86ff
commit
4e0c07c56d
|
@ -20,6 +20,13 @@
|
|||
</a>
|
||||
</h3>
|
||||
<div itemprop='description'><%= c.description&.html_safe %></div>
|
||||
<% if c.subcategory_list.present? %>
|
||||
<div class='subcategories'>
|
||||
<% c.subcategory_list.each_with_index do |sc, index| %>
|
||||
<a href='<%= sc.url %>'><%= sc.name %></a>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
</td>
|
||||
<td class='topics'>
|
||||
|
|
Loading…
Reference in New Issue
Block a user