{% comment %}Steps block: an ordered list of steps with sanitized bodies.{% endcomment %}
{% if block.title %}

{{ block.title }}

{% endif %}
    {% for step in block.steps.all %}
  1. {% if step.image %}{{ step.title }}{% endif %}

    {{ step.title }}

    {% if step.body %}
    {{ step.body|safe }}
    {% endif %}
  2. {% endfor %}