diff options
author | Vitaly Takmazov | 2017-10-04 15:31:44 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-10-04 17:29:14 +0300 |
commit | 45a8cd55e8b28abc36884a28527b58842c5cee10 (patch) | |
tree | d7973654cbaecf8e88b6d0863691cfb6efe4b58e /juick-www/src/main/webapp/WEB-INF/views/blog.html | |
parent | a33ffed053db33a9abd425cd7d641f47e6ab8651 (diff) |
www: microdata
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF/views/blog.html')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/blog.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/blog.html b/juick-www/src/main/webapp/WEB-INF/views/blog.html index 87007ea8..29b636dd 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/blog.html +++ b/juick-www/src/main/webapp/WEB-INF/views/blog.html @@ -7,9 +7,12 @@ {% if paramTag | default('') is not empty %} <p class="page"><a href="/tag/{{ paramTag.name | urlencode }}">← {{ i18n("messages","blog.allPostsWithTag") }} <b>{{ paramTag.name | escape }}</b></a></p> {% endif %} +<div itemscope="" itemtype="http://schema.org/Blog"> + <meta itemprop="url" content="{{ pageUrl }}"/> {% for msg in msgs %} {% include "views/partial/message" %} {% endfor %} +</div> {% if nextpage | default('') is not empty %} <p class="page"><a href="{{ nextpage | raw }}" rel="prev">{{ i18n("messages","messages.next") }} →</a></p> {% endif %} |