{% if title %}

{{ title }}

{% endif %}{% if text %}
{{ text }}
{% endif %}{% if nested %}
{% if nested.props %}

Nested component ID: {{ nested.props.id }}

Nested component text: {{ nested.props.text }}

{% endif %} {{ nested }}
{% endif %}{% if items %}
{% endif %}{% if sections %}
{% for key, value in sections.items() %}
{{ value}}
{% endfor %}
{% endif %}{% if extra_content %}{{ extra_content.html }}{% endif %}