{% extends "base.html" %} {% block title %}Search ยท tit{% endblock %} {% block content %}

Search repositories

{% if searched %}

Results

Scanned {{ rows_scanned }} repository names.

{% if truncated %}

The result is incomplete because the search reached a limit.

{% endif %} {% if results.is_empty() %}

No repository matched the search text.

{% else %}
    {% for result in results %}
  1. {{ result.kind }} {{ result.title }} {% if !result.summary.is_empty() %}

    {{ result.summary }}

    {% endif %}
  2. {% endfor %}
{% endif %}
{% endif %} {% endblock %}