{# ───────────────────────────────────────────── SPB Git — Personal Git Platform ───────────────────────────────────────────── Author : Simon-Pierre Boucher Contact : contact@spboucher.ai File : src/web/views/search.njk Purpose : Global search — grouped repo + README results License : MIT © Simon-Pierre Boucher ───────────────────────────────────────────── #}{% extends "layout.njk" %} {% block content %}

Search

{% if q %}

Repositories {{ results.repos.length }}

{% if results.repos.length %} {% else %}

No repository matches “{{ q }}”.

{% endif %}

README content {{ results.readmes.length }}

{% if results.readmes.length %} {% else %}

No README mentions “{{ q }}”.

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