{% extends "layout.twig" %} {% block title %}${ "Delete Page “%s”?" | translate | format(page.title | escape) }{% endblock %} {% block content %}

${ "Are you sure you want to delete “%s”?" | translate | format(page.title) }

${ "Excerpt" | translate }

${ page.body | truncate(500) } {% if page.children %}

${ "Delete children?" | translate }

    {% for child in page.children %}
  • $child.title
  • {% endfor %}
{% endif %}

{% endblock %}