{% extends "base.html" %} {% block title %}Search: {{ query | e }}{% endblock %} {% block meta_description %}Search results for "{{ query | e }}" in documentation{% endblock %} {% block sidebar_content %} {% endblock %} {% block content %}

Search Documentation

Searching...
{% if query %}

{{ results | length }} result{{ 's' if results | length != 1 else '' }} for '{{ query | e }}'

{% endif %} {% if results %}
{% for result in results %}

{{ result.title | e }}

{% if result.breadcrumbs %} {% endif %} {% if result.excerpt %}

{{ result.excerpt | safe }}

{% endif %}
{% if result.match_type %} {{ result.match_type | e }} {% endif %} {% if result.score is defined %} {% endif %}
{% endfor %}
{% elif query %}

🔎

No results found

No results found for '{{ query | e }}'

Try different keywords or check your spelling.

Browse all documentation
{% endif %}
{% endblock %}