{% set steps = (STEPS | fromjson) or [ { "label": "Eingang", "tag": "Manuell" }, { "label": "Verarbeitung", "accent": true, "tag": "KI-Andock" }, { "label": "Freigabe" }, { "label": "Ausgabe" } ] %} {% set orient = ORIENTATION | default("vertical") %}
Escape Velocity
{% if EYEBROW %}
{{ EYEBROW }}
{% endif %} {% if HEADLINE %}
{{ HEADLINE }}
{% endif %}
    {% for step in steps %}
  1. {{ loop.index }}
    {% if step.tag %}

    {{ step.tag }}

    {% endif %}

    {{ step.label }}

    {% if step.desc %}

    {{ step.desc }}

    {% endif %}
  2. {% endfor %}