diff options
author | Vitaly Takmazov | 2018-10-24 12:41:52 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-10-24 12:41:52 +0300 |
commit | cf035e574822ba59a414e8a5f352521e457af0c9 (patch) | |
tree | 6438201e90a3fe7c70c456ad81d341fbcd8df0b6 /juick-server/src/main/resources/templates/views/thread.html | |
parent | 37ac91b710a316639eaa2e72bb05c879d7e85199 (diff) |
www: drop schema.org metadata
Diffstat (limited to 'juick-server/src/main/resources/templates/views/thread.html')
-rw-r--r-- | juick-server/src/main/resources/templates/views/thread.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/juick-server/src/main/resources/templates/views/thread.html b/juick-server/src/main/resources/templates/views/thread.html index af9b4069..478258cf 100644 --- a/juick-server/src/main/resources/templates/views/thread.html +++ b/juick-server/src/main/resources/templates/views/thread.html @@ -3,31 +3,31 @@ {% block content %} <ul id="0"> <li id="msg-{{ msg.mid }}" class="msg msgthread"> - <div class="msg-cont" itemscope="" itemtype="http://schema.org/BlogPosting" itemref="org"> + <div class="msg-cont"> <div class="msg-header"> <div class="msg-avatar"> <a href="/{{ msg.user.name }}/"><img src="//i.juick.com/a/{{ msg.user.uid }}.png" alt="{{ msg.user.name }}"/></a> </div> - <span itemprop="author" itemscope="" itemtype="http://schema.org/Person"> - <a itemprop="url" rel="author" href="/{{ msg.user.name }}/"><span itemprop="name">{{ msg.user.name }}</span></a> + <span> + <a href="/{{ msg.user.name }}/"><span>{{ msg.user.name }}</span></a> </span> <div class="msg-ts"> <a href="/{{ msg.user.name }}/{{ msg.mid }}"> - <time itemprop="datePublished dateModified" datetime="{{ msg.timestamp | timestamp | date('yyyy-MM-dd HH:mm:ss') }}Z" + <time datetime="{{ msg.timestamp | timestamp | date('yyyy-MM-dd HH:mm:ss') }}Z" title="{{ msg.timestamp | timestamp | date('yyyy-MM-dd HH:mm:ss') }} GMT"> {{ msg.timestamp | prettyTime }} </time> </a> </div> - <div class="msg-tags" itemprop="headline"> + <div class="msg-tags"> {{ tags(msg.user.name, msg.tags | tagsList) }} </div> </div> - <div class="msg-txt" itemprop="articleBody">{{ msg | formatMessage }}</div> + <div class="msg-txt">{{ msg | formatMessage }}</div> {% if msg.AttachmentType is not empty %} <div class="msg-media"> <a href="//i.juick.com/p/{{ msg.mid }}.{{ msg.AttachmentType }}" data-fname="{{ msg.mid }}.{{ msg.AttachmentType }}"> - <img itemprop="image" src="//i.juick.com/photos-512/{{ msg.mid }}.{{ msg.AttachmentType }}" alt=""/> + <img src="//i.juick.com/photos-512/{{ msg.mid }}.{{ msg.AttachmentType }}" alt=""/> </a> </div> {% endif %} |