{{ hit.doc.title }}
{% set hit_t_info = doc_types_map.get(hit.doc.type) if doc_types_map is defined else none %}
{% set hit_t_label = hit_t_info.label if (hit_t_info and hit_t_info.label) else hit.doc.type %}
{{ "%.3f"|format(hit.score) }}
{{ hit.snippet|safe if hit.snippet else hit.doc.body[:220] }}
{% for tag in hit.doc.tags %}
{{ tag }}
{% endfor %}