{% 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 %}
{{ loop.index }}
{% if step.tag %}
{{ step.tag }}
{% endif %}
{{ step.label }}
{% if step.desc %}
{{ step.desc }}
{% endif %}
{% endfor %}