FIX: ListItem can’t have itemprop=url and itemprop=item together

This commit is contained in:
Joffrey JAFFEUX 2018-06-25 14:12:55 +02:00 committed by GitHub
parent 666386d4b7
commit 803968147c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -3,7 +3,6 @@
<% @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

@ -43,7 +43,6 @@
<% @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>