diff options
author | Vitaly Takmazov | 2017-05-04 13:22:58 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-05-05 12:07:34 +0300 |
commit | b0e1273ce8dd5de374e257c38cfaf66d397f45c1 (patch) | |
tree | bd70197219f0c9f6c48c1f1fc186dd3bfea73be0 /juick-www/src/main/webapp/WEB-INF | |
parent | 1263d0268707b5505c1eb55796c0664f283818eb (diff) |
juick-www: fix time template
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/index.html b/juick-www/src/main/webapp/WEB-INF/views/index.html index e2a38939..04ae32bd 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/index.html +++ b/juick-www/src/main/webapp/WEB-INF/views/index.html @@ -15,7 +15,8 @@ <div class="msg-menu"><a href="#"></a></div> <div class="msg-ts"> <a href="/{{ msg.getUser().getName() }}/{{ msg.getMid() }}"> - <time> + <time datetime="{{ msg.getDate() | date('yyyy-MM-dd HH:mm:ss')}}Z" + title="{{msg.getDate() | date('yyyy-MM-dd HH:mm:ss')}} GMT"> {{ msg.getDate() | prettyTime }} </time> </a> |