first frontend
[phinde.git] / data / templates / search / hit.htm
1 {% set doc = hit._source %}
2 <li class="hit">
3  <a href="{{doc.url}}">{{doc.title}}</a>
4  {% if doc.author.name %}
5  by <a href="{{doc.author.url}}">{{doc.author.name}}</a>
6  {% endif %}
7  <br/><tt>{{doc.extra.cleanUrl}}</tt>
8  {% if doc.modate %}
9  <br/>Changed: {{doc.extra.day}}
10  {% endif %}
11 </li>