{% extends "base.html" %} {% block content %}
{{ section.content | safe }}

Recent Posts

{% set root = get_section(path="_index.md") %} {% set_global all_pages = [] %} {% for subsection_path in root.subsections %} {% set subsection = get_section(path=subsection_path) %} {% set_global all_pages = all_pages | concat(with=subsection.pages) %} {% endfor %}
{% endblock content %}