{% set step_index = 1 %}{% set step_total = 5 %}

Step 1: Choose a Commander

{% include "build/_stage_navigator.html" %}
Tip: Press Enter to select the highlighted result, or use arrow keys to navigate. If your query is a full first word (e.g., "vivi"), exact first-word matches are prioritized.
{% if candidates %}

Top matches {% if count is defined %}{{ count }} result{% if count != 1 %}s{% endif %}{% else %}{{ (candidates|length) if candidates else 0 }} results{% endif %}

{% for name, score, colors in candidates %}
{{ name }}
match {{ score }}% {% if colors %} {% for c in colors %} {{ c }} {% endfor %} {% endif %}
{% endfor %}
{% endif %} {% if (query is defined and query and (not candidates or (candidates|length == 0))) and not inspect %}
No results for “{{ query }}”. Try a shorter name or a different spelling.
{% endif %} {% if inspect and inspect.ok %}

Theme Tags

{% if tags and tags|length > 0 %}
    {% for t in tags %}
  • {{ t }}
  • {% endfor %}
{% else %}

No theme tags found for this commander.

{% endif %}
{% elif inspect and not inspect.ok %}
{{ inspect.error }}
{% endif %} {% if error %}
{{ error }}
{% endif %}