{% if not hits %}

No hits for {{ query }}. Try fewer filters or a shorter query.

{% else %}
    {% for h in hits %}
  1. {{ loop.index }} {{ h.project[:40] }} score {{ "%.3f"|format(h.score) }}

    {{ h.text[:320] }}{% if h.text|length > 320 %}…{% endif %}

  2. {% endfor %}
{% endif %}