{% extends "base.html" %} {% block title %} {{ title }}{% endblock %} {% block content %}

{{ title }}

    {% for item in items %}
  1. {{ item.title }} {{ item.subtitle }} {% if item.body %}
    {{ item.body }} {% endif %}
    {% for button in item.buttons %} {{ button.label }} {% endfor %}
  2. {% endfor %}
{% endblock %}