1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-11-09 13:16:45 +00:00

Schema.org markup for index list.

This commit is contained in:
Markus Birth 2015-02-22 02:37:44 +01:00
parent d15a190798
commit 6b9d50db66

View File

@ -6,7 +6,7 @@ layout: default
<ul> <ul>
{% for post in paginator.posts %} {% for post in paginator.posts %}
<li><a href="{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} - {{ post.title }}</a></li> <li itemscope itemtype="http://schema.org/BlogPosting"><a itemprop="url" href="{{ post.url }}"><span itemprop="dateModified">{{ post.date | date: "%Y-%m-%d" }}</span> - <span itemprop="name">{{ post.title }}</span></a></li>
{% endfor %} {% endfor %}
</ul> </ul>