{% extends "base.html" %} {% import "_macros.html" as m %} {% block title %}Search — Code Atlas{% endblock %} {# The search page — sidebar and results ported verbatim from the design. Channel toggles and kind chips are links carrying the adjusted query, since the page is server-rendered; the markup and counting rules are the design's own. #} {% block sidebar %} {% endblock %} {% block main %}
{{ page.result_note }} ranked by fused score
{% for r in page.rows %}
{{ r.label }} {{ r.kind }} {{ r.loc }}
{{ r.sig }}
{% for c in ["graph", "keyword", "semantic"] %} {% set lit = c in r.channels %} {{ c }} {% endfor %} {{ r.strength }} {{ r.score }}
{% endfor %}
The search cannot count matches it did not fetch. This list is the top of a ranking, not a complete set — the total is unknown rather than estimated.
{% endblock %}