{% extends "base.html" %} {% block title %}Search — LocalKeep{% endblock %} {% block window_title %}Search - LocalKeep{% endblock %} {% block content %}

Search memories

{% if not has_banks and not searched %}

Nothing to search yet.

Search looks through your dated memories. Create a bank and add a few facts first.

Create your first bank

{% else %}
{% if searched %}
{% if error %}

{{ error }}

{% else %}

Results ({{ results | length }})

{% if results %} {% for memory in results %}

{{ memory.title }}

{{ memory.bank_title }} · {{ memory.event_date }}{% if memory.entities %} · {{ memory.entities | join(', ') }}{% endif %}

{{ memory.content }}

{% endfor %} {% else %}

No memories matched your search.

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