{% extends 'base.html.twig' %} {% block body %}
{{ page.pagetitle ?? page.title }}
{#{% for i in 0..page.children|length//3 %}#}
{% for child_page in page.children if child_page.status == 1 %}
{% endfor %}
{{ page.content|raw }}
{% endblock %}