{% if bookmarks %}
{{ bookmarks | length }} bookmark{{ 's' if bookmarks | length != 1 else '' }}
{% for b in bookmarks %}

{{ b.title or b.get('title', 'Untitled') }}

{{ b.project_id or b.get('project_id', '') }} {% if b.bookmarked_at or b.get('bookmarked_at') %} · Bookmarked {{ b.bookmarked_at or b.get('bookmarked_at', '') }} {% endif %}
{% if b.notes or b.get('notes') %}

{{ b.notes or b.get('notes', '') }}

{% endif %}
{% endfor %} {% else %}

No bookmarks yet. Click the bookmark icon on search results to save conversations.

{% endif %}