blob: 501b8437b3f5dcadeee33e0ec38d4ee28d44bdc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% set doc = hit._source %}
<li class="hit hit-chat">
<span class="text">
{{doc.htmlText|raw}}
</span>
<br/>
<span class="meta">
{% if doc.author.name %}
<em>
{% if doc.author.url %}
<a href="{{doc.author.url}}">{{doc.author.name}}</a>
{% else %}
{{doc.author.name}}
{% endif %}
</em>
at
{% endif %}
{% if doc.status.modate %}
<a href="{{doc.url}}" class="date">{{doc.status.modate|date("Y-m-d H:i")}}</a>
{% endif %}
</span>
</li>
|