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