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

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 %}
{% endblock %}