{# ── Header ── #}
Governor by Simple Machines First-run Setup
{# ── Progress stepper ── #} {% if current_step is defined and total_steps is defined and current_step <= total_steps %}
{% for i in range(1, total_steps + 1) %} {% set label = step_labels[i - 1] %} {# ── Circle ── #} {% if i < current_step %} {# completed #}
{% elif i == current_step %} {# active #}
{{ i }}
{% else %} {# pending #}
{{ i }}
{% endif %} {# ── Connector line ── #} {% if not loop.last %} {% endif %} {% endfor %}
{% endif %} {# ── Main content ── #}
{% block content %}{% endblock %}
{# ── Submit spinner script (applies to all wizard forms) ── #}