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'>
|
2016-08-18 05:23:16 +08:00
|
|
|
<% @category_list.categories.each do |c| %>
|
2015-02-13 19:34:22 +08:00
|
|
|
<div class='category' itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
|
|
|
|
<meta itemprop='url' content='<%= c.url %>'>
|
2015-05-01 00:46:19 +08:00
|
|
|
<h2><a href='<%= c.url %>' itemprop='item'>
|
2015-02-13 19:34:22 +08:00
|
|
|
<span itemprop='name'><%= c.name %></span>
|
|
|
|
</a></h2>
|
|
|
|
<span itemprop='description'><%= c.description %></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 %>
|