{# /** * @file * Default theme implementation for a tour recap page. * * Available variables: * - tour: The tour entity. * - tips: An array of tip items, each containing: * - title: The tip title/label. * - body: The rendered tip body content. * * @see \Drupal\tour\Controller\TourRecapController::recap() * * @ingroup themeable */ #}

{{ 'This is a summary of all steps in the tour.'|t }}

    {% for tip in tips %}
  1. {% if tip.title %}

    {{ tip.title }}

    {% endif %} {% if tip.body %}
    {{ tip.body|raw }}
    {% endif %}
  2. {% endfor %}