mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 01:43:45 +08:00
15 lines
622 B
Plaintext
15 lines
622 B
Plaintext
<div class='category-list' itemscope itemtype='http://schema.org/ItemList'>
|
|
<meta itemprop='itemListOrder' content='http://schema.org/ItemListOrderDescending'>
|
|
<% @category_list.categories.each do |c| %>
|
|
<div class='category' itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
|
|
<meta itemprop='url' content='<%= c.url %>'>
|
|
<h2><a href='<%= c.url %>' itemprop='item'>
|
|
<span itemprop='name'><%= c.name %></span>
|
|
</a></h2>
|
|
<span itemprop='description'><%= c.description %></span>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% content_for :title do %><%= @title %><% end %>
|