39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
<div itemscope itemtype='http://schema.org/ItemList'>
|
|
<table class='category-list'>
|
|
<thead>
|
|
<tr>
|
|
<th class='category'><%= t 'js.categories.category' %></th>
|
|
<th class='topics'><%= t 'js.topic.list' %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<meta itemprop='itemListOrder' content='http://schema.org/ItemListOrderDescending'>
|
|
<% @category_list.categories.each_with_index do |c, index| %>
|
|
<tr>
|
|
<td class='category' style='border-color: #<%= c.color %>;'>
|
|
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
|
|
<meta itemprop='position' content='<%= index %>'>
|
|
<meta itemprop='url' content='<%= c.url %>'>
|
|
<h3>
|
|
<a href='<%= c.url %>'>
|
|
<span itemprop='name'><%= c.name %></span>
|
|
</a>
|
|
</h3>
|
|
<div itemprop='description'><%= c.description&.html_safe %></div>
|
|
</div>
|
|
</td>
|
|
<td class='topics'>
|
|
<div title='<%= c.topic_count %> <%= t 'js.topic.list' %>'><%= c.topic_count %></div>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<% content_for :title do %><%= @title %><% end %>
|
|
|
|
<% content_for :head do %>
|
|
<%= raw crawlable_meta_data(title: SiteSetting.title, description: SiteSetting.site_description) %>
|
|
<% end %>
|