{% extends "layout.html" %} {% block title %}Search - chat{% endblock %} {% block content %}
{% if not query %} {# Empty-state placeholder: the top-bar form submits to /search even with no input, so this page must render cleanly with no query. #}

Enter a query to search memories across all chats.

{% elif not results %}

No matches for “{{ query }}”.

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