{% if query %}

Search Results for "{{ query }}"

{{ count }} result{{ 's' if count != 1 else '' }} found
{% endif %} {% if prompts %}
{% for prompt in prompts %}

{% if prompt._search_highlights and prompt._search_highlights.title_snippet %} {{ prompt._search_highlights.title_snippet | safe_highlight }} {% else %} {{ prompt.title }} {% endif %}

{{ prompt.category.title() }}
{% if prompt._search_highlights %} {% if prompt._search_highlights.description_snippet %}

{{ prompt._search_highlights.description_snippet | safe_highlight }}

{% elif prompt._search_highlights.content_snippet %}

{{ prompt._search_highlights.content_snippet | safe_highlight }}

{% else %}

{{ prompt.description or (prompt.content[:100] + '...' if prompt.content|length > 100 else prompt.content) }}

{% endif %} {% else %}

{{ prompt.description or (prompt.content[:100] + '...' if prompt.content|length > 100 else prompt.content) }}

{% endif %}
{% if prompt.tags %}
{% for tag in prompt.tags %} {% if prompt._search_highlights and tag in prompt._search_highlights.matched_tags %} {{ tag }} {% else %} {{ tag }} {% endif %} {% endfor %}
{% endif %} {% if prompt._search_highlights %}
Matches found in: {% if prompt._search_highlights.title_snippet %} title{% endif %} {% if prompt._search_highlights.content_snippet %} content{% endif %} {% if prompt._search_highlights.description_snippet %} description{% endif %} {% if prompt._search_highlights.matched_tags %} tags{% endif %}
{% endif %}
Created: {{ prompt.created_at[:10] }}
{% endfor %}
{% else %}
🔍

No prompts found

{% if query %}

No prompts match your search for "{{ query }}".

Try:

  • Different keywords
  • Broader terms
  • Checking for typos
{% else %}

Start typing to search through your prompts.

{% endif %} Create New Prompt
{% endif %}