소스 검색

Put timestamp in a <time> tag for better semantics and easier styling

Kim Alvefur 7 년 전
부모
커밋
a82f950e3c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/templates/message.html

+ 2 - 1
src/templates/message.html

@@ -1,4 +1,5 @@
 <div class="message chat-message {{{o.extra_classes}}}" data-isodate="{{{o.isodate}}}" data-msgid="{{{o.msgid}}}">
-    <span class="chat-msg-author chat-msg-{{{o.sender}}}">{{{o.time}}} {{{o.username}}}:&nbsp;</span>
+    <time timestamp="{{{o.isodate}}}">{{{o.time}}}</time>
+    <span class="chat-msg-author chat-msg-{{{o.sender}}}">{{{o.username}}}:&nbsp;</span>
     <span class="chat-msg-content"><!-- message gets added here via renderMessage --></span>
 </div>