{% extends "base.html" %} {% block title %}Search: {{ q }}{% endblock %} {% block content %}
{% if q %} {{ hits | length }} result{% if hits | length != 1 %}s{% endif %} for {{ q }} {% else %} Enter a query above to search the help corpus. {% endif %} · ← back to help home
{% if hits %}
{% for hit in hits %}
{{ hit.feature }} {{ hit.kind }} {{ '%.2f' % (hit.score | float) }}
{{ hit.title }}
{{ hit.snippet }}
{% endfor %}
{% elif q %}
No results for {{ q }}. Try a different phrase, or browse the corpus.
{% endif %} {% endblock %}