2015-02-13 19:34:22 +08:00
|
|
|
<div class='category-list' itemscope itemtype='http://schema.org/ItemList'>
|
|
|
|
<meta itemprop='itemListOrder' content='http://schema.org/ItemListOrderDescending'>
|
2018-06-14 05:20:48 +08:00
|
|
|
<% @category_list.categories.each_with_index do |c, index| %>
|
2015-02-13 19:34:22 +08:00
|
|
|
<div class='category' itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
|
2018-06-14 05:20:48 +08:00
|
|
|
<meta itemprop='position' content='<%= index %>'>
|
|
|
|
<h2>
|
|
|
|
<a href='<%= "#{Discourse.base_url}#{c.url}" %>' itemprop='item'>
|
|
|
|
<span itemprop='name'><%= c.name %></span>
|
|
|
|
</a>
|
|
|
|
</h2>
|
2017-07-26 02:40:02 +08:00
|
|
|
<span itemprop='description'><%= c.description&.html_safe %></span>
|
2013-04-27 01:10:41 +08:00
|
|
|
</div>
|
2015-02-13 19:34:22 +08:00
|
|
|
<% end %>
|
|
|
|
</div>
|
2014-10-31 02:26:35 +08:00
|
|
|
|
2015-06-09 00:07:35 +08:00
|
|
|
<% content_for :title do %><%= @title %><% end %>
|
2016-08-19 19:34:43 +08:00
|
|
|
|
|
|
|
<% content_for :head do %>
|
|
|
|
<%= raw crawlable_meta_data(title: SiteSetting.title, description: SiteSetting.site_description) %>
|
|
|
|
<% end %>
|