{% if results %}
{{ results | length }} result{{ 's' if results | length != 1 else '' }}
{% for item in results %}
{{ item.category }} {% if item.confidence is defined %} {{ "%.0f" | format(item.confidence * 100) }}% {% endif %}

{{ item.summary or 'No summary' }}

{{ item.original_path }}

{{ item.created_at[:10] }}
{{ item.route_name }}
{% endfor %}
{% elif query %}
No results for "{{ query }}"
{% endif %}