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

{{ page.title }}

{% if page.get_children.live %}
{% for article in page.get_children.live %}

{{ article.title }}

{% endfor %}
{% else %} {% include "includes/empty_state.html" with message="No articles yet." %} {% endif %} {% endblock %}