{% extends "base.html" %} {% block title %}Search: {{ query }}{% endblock %} {% set active_tab = type if type == 'files' else '' %} {% block content %} {% if results %}
{% for result in results %}

{% if type == 'files' or not type %} {{ result.name }} {% else %} {{ result.title }} {% endif %}

{% if result.snippet %}

{{ result.snippet }}

{% endif %}
{% if type != 'files' and result.tags %} {% for tag in result.tags.split(',') %} {% if tag.strip() %} {{ tag.strip() }} {% endif %} {% endfor %} {% endif %} {% if type == 'files' %} {{ result.mtime_str }} ยท {{ result.size_str }} {% endif %}
{% endfor %}
{% else %}

No results found

Try different keywords or check spelling.

Clear
{% endif %} {% endblock %}