{% extends "base.html" %} {% block title %}{{ query }} - Rexa Search{% endblock %} {% block content %}
AI Web Images
{% if query %}

About {{ results|length }} results found

{% for result in results %}

{{ result.title }}

{{ result.url }}
{% if result.highlights %} {{ result.highlights[0]|safe }} {% else %} {{ result.text }} {% endif %}
{% endfor %} {% if not results %}

No results found for "{{ query }}"

Try different keywords or check your spelling.

{% endif %}
{% endif %} {% endblock %} {% if not query %}

Please enter a search query.

{% else %}

About {{ results|length }} results found

{% for result in results %}

{{ result.title }}

{{ result.url }}
{% if result.highlights %} {{ result.highlights[0]|safe }} {% else %} {{ result.text }} {% endif %}
{% endfor %} {% if not results %}

No results found for "{{ query }}"

Try different keywords or check your spelling.

{% endif %}
{% endif %} {% endblock %}