{% extends "base.html" %} {% from "components/tool_card.html" import tool_card %} {% block title %}Search: {{ query }} - CmdForge Registry{% endblock %} {% block meta_description %}Search results for "{{ query }}" in the CmdForge Registry.{% endblock %} {% block content %}
{% if query %}

{{ pagination.total if pagination else results|length }} results for "{{ query }}"

{% if results %}
{% for tool in results %} {{ tool_card( owner=tool.owner, name=tool.name, description=tool.description, category=tool.category, downloads=tool.downloads, version=tool.version, tags=tool.tags ) }} {% endfor %}
{% if pagination and pagination.pages > 1 %} {% endif %} {% else %}

No results found

We couldn't find any tools matching "{{ query }}"{% if active_categories or active_tags %} with the current filters{% endif %}.

{% if active_categories or active_tags or active_owner %} {% endif %}

Suggestions:

  • Check your spelling
  • Try more general keywords
  • Remove some filters
{% endif %}
{% else %}

Search the Registry

Find tools by name, description, category, or tags.

Popular Categories:

{% for cat in popular_categories %} {{ cat.display_name }} {% endfor %}
{% endif %}
{% endblock %}