FIX: minor micro data fixes

This commit is contained in:
Joffrey JAFFEUX 2018-06-29 13:41:04 +02:00 committed by GitHub
parent 7550e9ff95
commit 1772b56cda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@
<% @category_list.categories.each_with_index do |c, index| %>
<div class='category' itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='position' content='<%= index %>'>
<meta itemprop='url' content='<%= "#{Discourse.base_url}#{c.url}" %>'>
<h2>
<a href='<%= "#{Discourse.base_url}#{c.url}" %>' itemprop='item'>
<span itemprop='name'><%= c.name %></span>

View File

@ -27,7 +27,7 @@
<% if params[:page].to_i == 0 && @subcategories.present? %>
<% @subcategories.each do |subcategory| %>
<a href='<%= subcategory.url %>' itemprop='item'>
<a href='<%= subcategory.url %>'>
<span itemprop='name'><%= subcategory.name %></span>
</a>
<% if subcategory.description.present? %>
@ -43,6 +43,7 @@
<% @list.topics.each_with_index do |t,i| %>
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<meta itemprop='position' content='<%= i %>'>
<meta itemprop='url' content='<%= t.url %>'>
<a href='<%= t.url %>' itemprop='item'>
<span itemprop='name'><%= t.title %></span>
</a>